Some checks failed
Build the release program / Cargo build release (push) Failing after 1s
21 lines
306 B
YAML
21 lines
306 B
YAML
name: Test the running changes
|
|
|
|
on:
|
|
push:
|
|
branches: [ "dev" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: cargo test
|
|
uses: actions/checkout@v4
|
|
run: cargo test --verbose
|