fix clippy command

This commit is contained in:
jasonwitty 2025-08-08 17:33:30 -07:00
parent 274a485f8d
commit 4bd6744df4

View File

@ -11,10 +11,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable - uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Cargo fmt - name: Cargo fmt
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Clippy - name: Clippy
run: cargo clippy --all-targets --all-features -D warnings run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build - name: Build
run: cargo build --release --workspace run: cargo build --release --workspace
- name: Smoke test (client --help) - name: Smoke test (client --help)