This commit is contained in:
Aevyrie Roessler 2023-03-29 01:23:07 -07:00
commit 50d0672c6d

14
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt
- run: cargo check --all-targets --all-features
- run: cargo clippy --all-targets
- run: cargo test --all-targets