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)