Skip to content

Commit d04c999

Browse files
committed
Raise required compiler for backtrace feature to rust 1.82
1 parent 219d163 commit d04c999

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
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.80.0, 1.70.0]
27+
rust: [nightly, beta, stable, 1.82.0, 1.80.0, 1.70.0]
2828
timeout-minutes: 45
2929
steps:
3030
- uses: actions/checkout@v4
@@ -41,6 +41,7 @@ jobs:
4141
- run: cargo test
4242
- run: cargo check --no-default-features
4343
- run: cargo check --features backtrace
44+
if: matrix.rust != '1.80.0' && matrix.rust != '1.70.0'
4445
- uses: actions/upload-artifact@v4
4546
if: matrix.rust == 'nightly' && always()
4647
with:
@@ -66,8 +67,6 @@ jobs:
6667
components: rust-src
6768
- run: cargo check --manifest-path tests/crate/Cargo.toml
6869
- run: cargo check --manifest-path tests/crate/Cargo.toml --no-default-features
69-
- run: cargo check --manifest-path tests/crate/Cargo.toml --features backtrace
70-
if: matrix.rust != '1.65.0' && matrix.rust != '1.52.0' && matrix.rust != '1.51.0' && matrix.rust != '1.50.0' && matrix.rust != '1.39.0'
7170

7271
minimal:
7372
name: Minimal versions

0 commit comments

Comments
 (0)