ci: add cargo test & cargo clippy on push/PR

This commit is contained in:
rzmk 2024-06-20 23:16:47 -04:00
parent a7e040170b
commit f435642358
No known key found for this signature in database

24
.github/workflows/cargo-runner.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Run cargo commands
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: czv - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
# - beta
# - nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo clippy
- run: cargo test --verbose