diff --git a/.github/workflows/code_quality-aarch64-darwin.yml b/.github/workflows/code_quality-aarch64-darwin.yml index 63e9e3b0..f3094271 100644 --- a/.github/workflows/code_quality-aarch64-darwin.yml +++ b/.github/workflows/code_quality-aarch64-darwin.yml @@ -30,7 +30,10 @@ jobs: run: cargo fmt -- --check - name: Clippy (default features) - run: cargo clippy -- -D warnings + run: cargo clippy --target aarch64-apple-darwin -- -D warnings - name: Clippy (net feature) - run: cargo clippy --features net -- -D warnings + run: cargo clippy --target aarch64-apple-darwin --features net -- -D warnings + + - name: Clippy (efi feature) + run: cargo clippy --target aarch64-apple-darwin --features efi -- -D warnings