We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 852e49e + 557c3a3 commit 7721ae2Copy full SHA for 7721ae2
.github/workflows/ci.yml
@@ -4,6 +4,7 @@ name: Basic CI
4
5
env:
6
CARGO_TERM_COLOR: always
7
+ RUST_MIN_SRV: "1.71.1"
8
9
jobs:
10
check:
@@ -49,6 +50,19 @@ jobs:
49
50
- run: rustup component add clippy
51
- run: cargo clippy --all-targets -- -D warnings
52
53
+ min_version:
54
+ name: Minimum Supported Rust Version
55
+ runs-on: ${{ matrix.os }}
56
+ strategy:
57
+ matrix:
58
+ os: [ubuntu-latest, macOS-latest, windows-latest]
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ - uses: dtolnay/rust-toolchain@stable
62
+ with:
63
+ toolchain: ${{ env.RUST_MIN_SRV }}
64
+ - run: cargo test
65
+
66
coverage:
67
name: Code Coverage
68
runs-on: ${{ matrix.job.os }}
0 commit comments