Finite state machines in rust; bendns fork to add types.
Diffstat (limited to '.github/workflows/tests.yml')
| -rw-r--r-- | .github/workflows/tests.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..76cb6e2 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,37 @@ +on: + push: + +name: Tests + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + components: rustfmt, clippy + override: true + + - name: Run cargo fmt + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check + + - name: Run cargo clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + + - name: Run tests + uses: actions-rs/cargo@v1 + env: + RUST_BACKTRACE: 1 + with: + command: test |