1
0
Fork 0
mirror of https://github.com/imjasonh/krust synced 2026-07-08 06:45:32 +00:00

fix: Add missing toolchain parameter to fmt and clippy jobs

The dtolnay/rust-toolchain action requires an explicit toolchain
parameter when pinned to a specific SHA.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jason Hall 2025-06-08 00:53:34 -04:00
parent bd515ce3e2
commit 577c4152fe
Failed to extract signature

View file

@ -85,6 +85,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # stable
with:
toolchain: stable
components: rustfmt
- name: Check formatting
run: cargo fmt -- --check
@ -97,6 +98,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b # stable
with:
toolchain: stable
components: clippy
- name: Run clippy
run: cargo clippy -- -D warnings