From 1805bd35c0530133e238bbf8d9a41d84e03e058d Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Thu, 2 Mar 2023 16:24:22 +0100 Subject: [PATCH] Fix clippy --- .github/workflows/cont_integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 2fe86b88..e5d5fea7 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -43,7 +43,7 @@ jobs: run: cargo build ${{ matrix.features }} - name: Clippy if: ${{ matrix.rust.clippy }} - run: cargo clippy --all-targets --features ${{ matrix.features }} -- -D warnings + run: cargo clippy --all-targets ${{ matrix.features }} -- -D warnings - name: Test run: cargo test ${{ matrix.features }}