From 00adc13e89528b0bb581659fad89be628d7a5d1a Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Fri, 2 Aug 2024 08:56:18 -0700 Subject: [PATCH] Add clippy -D warnings to CI --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a792ed..5dbfff7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,7 +51,7 @@ jobs: - name: Format run: cargo fmt -- --check - name: Clippy - run: cargo clippy --workspace --all-features --all-targets + run: cargo clippy --workspace --all-features --all-targets -- -D warnings - name: Test run: cargo test --workspace --all-features --all-targets - name: Test docs