Skip to content
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
# Pinned, not floating. `@stable` means every new Rust release can turn
# a fresh clippy lint into a hard error here via `-D warnings`, with no
# commit to this repository -- which is exactly what happened: stable
# gained `clippy::chunks_exact_to_as_chunks` and this gate went red on
# tests/sha256_kat_anchor.rs, blocking every PR. Bump this deliberately.
- uses: dtolnay/rust-toolchain@1.96.0
with:
components: rustfmt, clippy
- run: cargo fmt --all --check
Expand Down
Loading