From 54dba1139840a8eaa8f665b4d127de3d9b524647 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Thu, 26 Sep 2024 22:22:30 +0200 Subject: [PATCH] chore: don't clippy all targets --- .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 1cd6ce7..b2b0225 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run cargo clippy - run: cargo clippy --all-targets --workspace --all-features -- -D warnings + run: cargo clippy --workspace --all-features -- -D warnings check_fmt: runs-on: ubuntu-24.04