Skip to content

Commit

Permalink
Pin Rust version used in CI
Browse files Browse the repository at this point in the history
To avoid surprises with e.g. new Clippy lints breaking CI.
  • Loading branch information
Kobzol committed Mar 27, 2024
1 parent b96ff2d commit b6f29ef
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust Stable
- name: Install Rust 1.77.0
run: |
rustc -vV
rustup update stable
rustup default stable
rustup install 1.77.0
rustup default 1.77.0
rustc -vV
rustup component add rustfmt clippy
- name: Run rustfmt
run: cargo fmt -- --check
Expand Down

0 comments on commit b6f29ef

Please sign in to comment.