From c0c10f34cbb8b3bf3e44452f1f364f09eccf4a7f Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Thu, 28 Aug 2025 21:26:29 -0700 Subject: [PATCH] fix: specify --profile to `cargo clippy` in CI --- .github/workflows/rust-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index fa9f1cd15f..7d02c95dee 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -134,7 +134,7 @@ jobs: - name: cargo clippy id: clippy - run: cargo clippy --target ${{ matrix.target }} --all-features --tests -- -D warnings + run: cargo clippy --target ${{ matrix.target }} --all-features --tests --profile ${{ matrix.profile }} -- -D warnings # Running `cargo build` from the workspace root builds the workspace using # the union of all features from third-party crates. This can mask errors