ci: Check MSRV, bump to 1.60 and improve feature coverage. #42
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Continuous integration | |
jobs: | |
check-test: | |
name: Check and test crate | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
- "1.60" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy | |
# Default features | |
- run: cargo check --all-targets | |
- run: cargo test | |
# No default features | |
- run: cargo check --all-targets --no-default-features | |
- run: cargo test --no-default-features | |
clippy-fmt: | |
name: Run Clippy and format code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy, rustfmt | |
- run: cargo clippy --all-targets -- -D warnings | |
- run: cargo fmt --check |