From c98bd2fd4a282c373185addc79c5e2a0ec59976f Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 21 Sep 2022 16:11:15 +0100 Subject: [PATCH] .github: Add clippy check of tracing feature Signed-off-by: Rob Bradford --- .github/workflows/quality.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index dba274c6c..fff37f2a8 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -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