Skip to content

Commit

Permalink
Add CI job using minimal-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 4, 2023
1 parent 79caf27 commit f482ed3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,18 @@ jobs:
run: cargo check --manifest-path tests/crate/Cargo.toml --target ${{matrix.target}} --no-default-features --features alloc
if: matrix.target

minimal:
name: Minimal versions
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- run: cargo generate-lockfile -Z minimal-versions
- run: cargo check --locked

miri:
name: Miri
runs-on: ubuntu-latest
Expand Down

0 comments on commit f482ed3

Please sign in to comment.