From 2000a29c7944e7da3cd968c431bcbeaf6b0e75f8 Mon Sep 17 00:00:00 2001 From: clux Date: Fri, 25 Oct 2024 19:41:25 +0100 Subject: [PATCH] all features in right place Signed-off-by: clux --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19f8444db..6fcc92c4f 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 --all-features + run: cargo test --workspace --lib --exclude kube-examples --exclude e2e -j6 if: matrix.os != 'macos-latest' - name: Run workspace unit tests (all features) if: matrix.os != 'windows-latest' @@ -78,7 +78,7 @@ jobs: # Examples - name: Test examples if: matrix.os != 'windows-latest' - run: cargo test -p kube-examples --examples -j6 + run: cargo test -p kube-examples --examples -j6 --all-features doc: runs-on: ubuntu-latest