From 72741c557a709f5ac640d2efffea6617389863e6 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 25 Nov 2020 16:39:08 +0000 Subject: [PATCH] actions: Add "--all --tests" to clippy in quality action Signed-off-by: Rob Bradford --- .github/workflows/quality.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index c7660786d..82fffb136 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -27,10 +27,10 @@ jobs: run: cargo fmt -- --check - name: Clippy (all features) - run: cargo clippy --all-targets --all-features -- -D warnings + run: cargo clippy --all --all-targets --all-features --tests -- -D warnings - name: Clippy (acpi,kvm) - run: cargo clippy --all-targets --no-default-features --features "acpi,kvm" -- -D warnings + run: cargo clippy --all --all-targets --no-default-features --tests --features "acpi,kvm" -- -D warnings - name: Clippy (kvm) - run: cargo clippy --all-targets --no-default-features --features "kvm" -- -D warnings + run: cargo clippy --all --all-targets --no-default-features --tests --features "kvm" -- -D warnings