add cargo workflow
Cargo Check and Test / cargo test (push) Waiting to run
Details
Cargo Check and Test / cargo test (push) Waiting to run
Details
This commit is contained in:
parent
a712e8fb1c
commit
02ce718d67
|
@ -0,0 +1,12 @@
|
||||||
|
name: Cargo Check and Test
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
name: cargo test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
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