From d009942c4703a938ea8f978c9a5ed7472769fc4b Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 14 Oct 2023 11:51:08 +0700 Subject: [PATCH] ci: Enable clippy for all targets in the workspace. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 93b71c871..0488cc235 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -55,7 +55,7 @@ jobs: - name: Check for clippy hints if: ${{ matrix.rust == 'stable' }} - run: cargo clippy -- -D warnings + run: cargo clippy --workspace --all-targets -- -D warnings # This fails on 1.64, but works on 1.66 and later. # https://github.com/rust-lang/rust/issues/103306