rs-basic/.gitea/workflows/cargo.yaml

12 lines
279 B
YAML
Raw Normal View History

2024-01-10 20:47:44 +01:00
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