Skip to content

Commit 82e4149

Browse files
committed
Raise minimum compiler for tests to 1.85
Required by bincode dev-dependency.
1 parent 4d75160 commit 82e4149

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,17 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
rust: [nightly, beta, stable, 1.68.0]
22+
rust: [nightly, beta, stable, 1.85.0, 1.68.0]
2323
timeout-minutes: 45
2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: dtolnay/rust-toolchain@master
2727
with:
2828
toolchain: ${{matrix.rust}}
29-
- run: cargo test
3029
- run: cargo check --no-default-features
3130
- run: cargo check --no-default-features --features alloc
31+
- run: cargo test
32+
if: matrix.rust != '1.68.0'
3233
- uses: actions/upload-artifact@v4
3334
if: matrix.rust == 'nightly' && always()
3435
with:

0 commit comments

Comments
 (0)