From 3e90438fb8a3e63b5bf65e83619a332bd3a451f8 Mon Sep 17 00:00:00 2001 From: Mauro Ezequiel Moltrasio Date: Tue, 10 Feb 2026 15:11:53 +0100 Subject: [PATCH] chore(lint): enable clippy on unit test code --- .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 9d55dda..304a6e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: - name: Build run: cargo +${{ matrix.rust-version }} build --release - name: Lint - run: cargo +${{ matrix.rust-version }} clippy -- -D warnings + run: cargo +${{ matrix.rust-version }} clippy --all-targets --all-features -- -D warnings - name: Test run: cargo +${{ matrix.rust-version }} test