Skip to content

Commit

Permalink
Raise minimum tested compiler to rust 1.63
Browse files Browse the repository at this point in the history
Required by itertools dev-dependency.
  • Loading branch information
dtolnay committed Jan 1, 2025
1 parent 473a7d2 commit 2b1dcf9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.61.0]
rust: [nightly, beta, stable, 1.63.0, 1.61.0]
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,9 @@ jobs:
- name: Enable type layout randomization
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
if: matrix.rust == 'nightly'
- run: cargo check
- run: cargo test
if: matrix.rust != '1.61.0'
- uses: actions/upload-artifact@v4
if: matrix.rust == 'nightly' && always()
with:
Expand Down

0 comments on commit 2b1dcf9

Please sign in to comment.