There was an error while loading. Please reload this page.
1 parent 7d5e43a commit 23a8290Copy full SHA for 23a8290
.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
24
strategy:
25
fail-fast: false
26
matrix:
27
- rust: [nightly, beta, stable, 1.68.0]
+ rust: [nightly, beta, stable, 1.86.0]
28
timeout-minutes: 45
29
steps:
30
- uses: actions/checkout@v6
@@ -47,6 +47,18 @@ jobs:
47
path: Cargo.lock
48
continue-on-error: true
49
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
+
62
doc:
63
name: Documentation
64
needs: pre_ci
0 commit comments