From f5f275d2753a91268fe25f3f124cc0532d32cfd3 Mon Sep 17 00:00:00 2001 From: clux Date: Fri, 25 Oct 2024 19:31:51 +0100 Subject: [PATCH] all features example build Signed-off-by: clux --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66e280efa..19f8444db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: run: cargo test --workspace --lib --no-default-features -j6 if: matrix.os == 'ubuntu-latest' # only linux tests all feature combinations - name: Run workspace unit tests (default features) - run: cargo test --workspace --lib --exclude kube-examples --exclude e2e -j6 + run: cargo test --workspace --lib --exclude kube-examples --exclude e2e -j6 --all-features if: matrix.os != 'macos-latest' - name: Run workspace unit tests (all features) if: matrix.os != 'windows-latest'