Skip to content

Commit 23a8290

Browse files
committed
Raise minimum tested compiler to rust 1.86
1 parent 7d5e43a commit 23a8290

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
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.68.0]
27+
rust: [nightly, beta, stable, 1.86.0]
2828
timeout-minutes: 45
2929
steps:
3030
- uses: actions/checkout@v6
@@ -47,6 +47,18 @@ jobs:
4747
path: Cargo.lock
4848
continue-on-error: true
4949

50+
msrv:
51+
name: Rust 1.68.0
52+
needs: pre_ci
53+
if: needs.pre_ci.outputs.continue
54+
runs-on: ubuntu-latest
55+
timeout-minutes: 45
56+
steps:
57+
- uses: actions/checkout@v6
58+
- uses: dtolnay/rust-toolchain@1.68.0
59+
- run: cargo build
60+
- run: cargo build --features small
61+
5062
doc:
5163
name: Documentation
5264
needs: pre_ci

0 commit comments

Comments
 (0)