actions: Add "--all --tests" to clippy in quality action
Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
b2608ca285
commit
72741c557a
1 changed files with 3 additions and 3 deletions
6
.github/workflows/quality.yaml
vendored
6
.github/workflows/quality.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue