Skip to content

Commit

Permalink
ci/darwin: run clippy checks on EFI feature
Browse files Browse the repository at this point in the history
Extend the workflow for the darwin target to run clippy checks on the
EFI feature.

Signed-off-by: Sergio Lopez <slp@redhat.com>
  • Loading branch information
slp committed Feb 7, 2024
1 parent bf249f4 commit db81c28
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/code_quality-aarch64-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit db81c28

Please sign in to comment.