Update Rust setup and install clippy and rustfmt

This commit is contained in:
geoffsee
2025-08-14 16:46:58 -04:00
parent 21c816b4cc
commit af6774d3b6
3 changed files with 13 additions and 10 deletions

View File

@@ -35,9 +35,10 @@ jobs:
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
run: rustup update stable && rustup default stable
- name: Install clippy and rustfmt
run: rustup component add clippy rustfmt
- name: Cargo fmt (check)
run: cargo fmt --all -- --check