add cargo workflow
Cargo Check and Test / cargo test (push) Successful in 1m12s
Details
Cargo Check and Test / cargo test (push) Successful in 1m12s
Details
This commit is contained in:
parent
a712e8fb1c
commit
a6b4bfbb1e
|
@ -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
|
Loading…
Reference in New Issue