Skip to content

Commit

Permalink
Raise minimum tested compiler to 1.70
Browse files Browse the repository at this point in the history
Required by the `toml` crate.
  • Loading branch information
dtolnay committed Mar 17, 2024
1 parent 2ccacc3 commit b2e7211
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.62.0]
rust: [nightly, beta, stable, 1.70.0]
os: [ubuntu]
include:
- name: macOS
Expand All @@ -47,6 +47,17 @@ jobs:
if: startsWith(matrix.rust, 'nightly')
- run: cargo test

msrv:
name: Rust 1.62.0
needs: pre_ci
if: needs.pre_ci.outputs.continue
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.62.0
- run: cargo check

doc:
name: Documentation
needs: pre_ci
Expand Down

0 comments on commit b2e7211

Please sign in to comment.