From 4bd6744df4e71d20501b149d54eef4e26b0291b6 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Fri, 8 Aug 2025 17:33:30 -0700 Subject: [PATCH] fix clippy command --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64cc6a8..7ec6f1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,10 +11,12 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable + with: + components: clippy, rustfmt - name: Cargo fmt run: cargo fmt --all -- --check - name: Clippy - run: cargo clippy --all-targets --all-features -D warnings + run: cargo clippy --all-targets --all-features -- -D warnings - name: Build run: cargo build --release --workspace - name: Smoke test (client --help)