Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ concurrency:
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
RUST_TOOLCHAIN: "1.94.0"
RUST_TOOLCHAIN: "stable"
MSRV_TOOLCHAIN: "1.94"
Comment on lines +23 to +24
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description/title focus on adding a dedicated MSRV verification job, but this diff also changes the primary CI toolchain for fmt/clippy/test from a pinned 1.94.0 to floating stable. That’s a meaningful behavior change (CI will now track latest stable) and should be called out explicitly in the PR description (or the workflow should keep using the pinned toolchain if that change is unintended).

Copilot uses AI. Check for mistakes.

jobs:
fmt:
Expand Down Expand Up @@ -76,17 +77,16 @@ jobs:
- run: cargo test --all-targets --features eval

msrv:
name: MSRV Check
needs: fmt
name: MSRV (${{ env.MSRV_TOOLCHAIN }})
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
toolchain: ${{ env.MSRV_TOOLCHAIN }}
- uses: Swatinem/rust-cache@v2
- run: cargo check --all-targets
- run: cargo check --all-features --all-targets

dependency-review:
name: Dependency Review
Expand Down
Loading