From 96d4d0bd69457b4d7647302a5e83e7c1ae627fb5 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 8 Dec 2023 11:07:55 +0100 Subject: [PATCH] ci: Run clippy for all targets Benchmarks, tests, and so on are excluded by default. Currently this has no effect on what code is checked, but it could change things down the line. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02f9c9d..a29187a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: with: components: clippy - uses: Swatinem/rust-cache@v2 - - run: cargo clippy --locked -- -D warnings + - run: cargo clippy --locked --all-targets -- -D warnings typos: name: Spell Check with Typos -- 2.45.2