From 1501afd2ee5ab7ea9365c84eb9161a1bf603c6f8 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 18 Apr 2024 10:20:28 +0200 Subject: [PATCH] ci: use --all-targets with clippy --- .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 54ee428b..fa28b9d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - run: rustup component add clippy - - run: cargo clippy -- -D warnings + - run: cargo clippy --all-targets -- -D warnings coverage: name: Code Coverage