Skip to content

Commit 64f5606

Browse files
committed
Add CI job using minimal-versions
1 parent 4a14028 commit 64f5606

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ jobs:
3636
if: matrix.rust == 'nightly'
3737
- run: cargo test
3838

39+
minimal:
40+
name: Minimal versions
41+
needs: pre_ci
42+
if: needs.pre_ci.outputs.continue
43+
runs-on: ubuntu-latest
44+
timeout-minutes: 45
45+
steps:
46+
- uses: actions/checkout@v3
47+
- uses: dtolnay/rust-toolchain@nightly
48+
- run: cargo generate-lockfile -Z minimal-versions
49+
- run: cargo check --locked
50+
3951
clippy:
4052
name: Clippy
4153
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)