diff --git a/.github/workflows/quality.yaml b/.github/workflows/quality.yaml index 1a7b760ff..1d664f47c 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -45,6 +45,9 @@ jobs: - name: Clippy (default features + gdb) run: cargo clippy --locked --all --all-targets --tests --features "gdb" -- -D warnings + - name: Clippy (default features + guest_debug) + run: cargo clippy --locked --all --all-targets --tests --features "guest_debug" -- -D warnings + - name: Clippy (common + mshv) run: cargo clippy --locked --all --all-targets --no-default-features --tests --features "common,mshv" -- -D warnings