Skip to content

Commit 6e99bc7

Browse files
authored
Merge pull request #18 from serde-rs/rust
Raise compiler required for tests to 1.85
2 parents 9c400d1 + d9752f0 commit 6e99bc7

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
@@ -19,14 +19,16 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
rust: [nightly, beta, stable, 1.61.0]
22+
rust: [nightly, beta, stable, 1.85.0, 1.61.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 check
2930
- run: cargo test
31+
if: matrix.rust != '1.61.0'
3032
- run: cargo bench --no-run
3133
if: matrix.rust == 'nightly'
3234
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)