Skip to content

Commit 00f9367

Browse files
committed
Raise minimum compiler for tests to rust 1.70
1 parent 9fc6835 commit 00f9367

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
rust: [nightly, beta, stable, 1.56.0]
27+
rust: [nightly, beta, stable, 1.70.0, 1.56.0]
2828
timeout-minutes: 45
2929
steps:
3030
- uses: actions/checkout@v4
@@ -37,7 +37,9 @@ jobs:
3737
- name: Enable nightly-only tests
3838
run: echo RUSTFLAGS=${RUSTFLAGS}\ --cfg=async_trait_nightly_testing >> $GITHUB_ENV
3939
if: matrix.rust == 'nightly'
40+
- run: cargo check
4041
- run: cargo test
42+
if: matrix.rust != '1.56.0'
4143
- uses: actions/upload-artifact@v4
4244
if: matrix.rust == 'nightly' && always()
4345
with:

0 commit comments

Comments
 (0)