add cargo workflow
Cargo Check and Test / cargo test (push) Successful in 1m12s Details

This commit is contained in:
Christoph J. Scherr 2024-01-10 20:47:44 +01:00
parent a712e8fb1c
commit a6b4bfbb1e
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
name: Cargo Check and Test
on: [push, pull_request]
jobs:
test:
name: cargo test
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --all-features --verbose
- run: cargo test --all-features --verbose