Skip to content

Commit

Permalink
Raise minimum compiler for tests to rust 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Nov 27, 2024
1 parent 9fc6835 commit 00f9367
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.56.0]
rust: [nightly, beta, stable, 1.70.0, 1.56.0]
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
Expand All @@ -37,7 +37,9 @@ jobs:
- name: Enable nightly-only tests
run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=async_trait_nightly_testing >> $GITHUB_ENV
if: matrix.rust == 'nightly'
- run: cargo check
- run: cargo test
if: matrix.rust != '1.56.0'
- uses: actions/upload-artifact@v4
if: matrix.rust == 'nightly' && always()
with:
Expand Down

0 comments on commit 00f9367

Please sign in to comment.