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.
1 parent 79caf27 commit f482ed3Copy full SHA for f482ed3
.github/workflows/ci.yml
@@ -69,6 +69,18 @@ jobs:
69
run: cargo check --manifest-path tests/crate/Cargo.toml --target ${{matrix.target}} --no-default-features --features alloc
70
if: matrix.target
71
72
+ minimal:
73
+ name: Minimal versions
74
+ needs: pre_ci
75
+ if: needs.pre_ci.outputs.continue
76
+ runs-on: ubuntu-latest
77
+ timeout-minutes: 45
78
+ steps:
79
+ - uses: actions/checkout@v3
80
+ - uses: dtolnay/rust-toolchain@nightly
81
+ - run: cargo generate-lockfile -Z minimal-versions
82
+ - run: cargo check --locked
83
+
84
miri:
85
name: Miri
86
runs-on: ubuntu-latest
0 commit comments