.github: Add clippy check of tracing feature

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-09-21 16:11:15 +01:00
parent e53419ecfc
commit c98bd2fd4a

View File

@ -55,6 +55,9 @@ jobs:
- name: Clippy (default features + guest_debug)
run: cargo clippy --locked --all --all-targets --tests --features "guest_debug" -- -D warnings
- name: Clippy (default features + tracing)
run: cargo clippy --locked --all --all-targets --tests --features "tracing" -- -D warnings
- name: Clippy (common + mshv)
run: cargo clippy --locked --all --all-targets --no-default-features --tests --features "common,mshv" -- -D warnings