From be0cbb09b1b3e55e5b95140289acbabb1bf857e3 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 3 Mar 2021 15:54:32 +0000 Subject: [PATCH] build: Clippy check with "tdx" feature In the absence of a way of integration testing this testing that it compiles is reasonable compromise. 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 133f51700..2438ee23e 100644 --- a/.github/workflows/quality.yaml +++ b/.github/workflows/quality.yaml @@ -35,6 +35,9 @@ jobs: - name: Clippy (acpi,kvm) run: cargo clippy --all --all-targets --no-default-features --tests --features "acpi,kvm" -- -D warnings + - name: Clippy (acpi,kvm,tdx) + run: cargo clippy --all --all-targets --no-default-features --tests --features "acpi,kvm,tdx" -- -D warnings + - name: Clippy (kvm) run: cargo clippy --all --all-targets --no-default-features --tests --features "kvm" -- -D warnings