From cff190fa5f30b09ddfd8aacd963fd64fa1625c67 Mon Sep 17 00:00:00 2001 From: Michael Zhao Date: Thu, 24 Jun 2021 21:54:49 +0800 Subject: [PATCH] tests: Enable `--all` option in AArch64 clippy test Signed-off-by: Michael Zhao --- .github/workflows/quality-aarch64.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/quality-aarch64.yaml b/.github/workflows/quality-aarch64.yaml index 9b7af0763..c5c9f5e4c 100644 --- a/.github/workflows/quality-aarch64.yaml +++ b/.github/workflows/quality-aarch64.yaml @@ -37,25 +37,25 @@ jobs: with: use-cross: true command: clippy - args: --target=${{ matrix.target }} --no-default-features --features "kvm" -- -D warnings + args: --target=${{ matrix.target }} --all --no-default-features --features "kvm" -- -D warnings - name: Clippy (kvm,acpi) uses: actions-rs/cargo@v1 with: use-cross: true command: clippy - args: --target=${{ matrix.target }} --no-default-features --features "kvm,acpi" -- -D warnings + args: --target=${{ matrix.target }} --all --no-default-features --features "kvm,acpi" -- -D warnings - name: Clippy (all features,kvm) uses: actions-rs/cargo@v1 with: use-cross: true command: clippy - args: --target=${{ matrix.target }} --no-default-features --features "common,kvm" -- -D warnings + args: --target=${{ matrix.target }} --all --no-default-features --features "common,kvm" -- -D warnings - name: Clippy (default) uses: actions-rs/cargo@v1 with: use-cross: true command: clippy - args: --target=${{ matrix.target }} -- -D warnings + args: --target=${{ matrix.target }} --all -- -D warnings