Skip to content

Commit fbc4bc6

Browse files
committed
Add CI job using minimal-versions
1 parent eb608ff commit fbc4bc6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,18 @@ jobs:
4747
- uses: dtolnay/rust-toolchain@1.31.0
4848
- run: cargo check
4949

50+
minimal:
51+
name: Minimal versions
52+
needs: pre_ci
53+
if: needs.pre_ci.outputs.continue
54+
runs-on: ubuntu-latest
55+
timeout-minutes: 45
56+
steps:
57+
- uses: actions/checkout@v3
58+
- uses: dtolnay/rust-toolchain@nightly
59+
- run: cargo generate-lockfile -Z minimal-versions
60+
- run: cargo check --locked
61+
5062
clippy:
5163
name: Clippy
5264
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)