From 735457f0e14bea06cf48bca2beb872686bb00e56 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 13 Apr 2022 12:20:00 +0100 Subject: [PATCH] .github: Run clippy checks over tests on aarch64 Signed-off-by: Rob Bradford --- .github/workflows/quality-aarch64.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quality-aarch64.yaml b/.github/workflows/quality-aarch64.yaml index 7c48e8461..0cc186930 100644 --- a/.github/workflows/quality-aarch64.yaml +++ b/.github/workflows/quality-aarch64.yaml @@ -37,11 +37,11 @@ jobs: with: use-cross: true command: clippy - args: --target=${{ matrix.target }} --all --no-default-features --features "common,kvm" -- -D warnings + args: --target=${{ matrix.target }} --tests --all --no-default-features --features "common,kvm" -- -D warnings - name: Clippy (default features) uses: actions-rs/cargo@v1 with: use-cross: true command: clippy - args: --target=${{ matrix.target }} --all -- -D warnings + args: --target=${{ matrix.target }} --tests --all -- -D warnings