From 710560ecb7035a6baf1fd9d97d7f09d0cc075006 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Sun, 31 Mar 2024 20:26:59 +0200 Subject: [PATCH] Don't use --all-features in CI --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c263a434..f1eab4b88 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,7 +41,7 @@ jobs: rustup default ${{ matrix.rust }} - run: cargo test --verbose - run: cargo test --verbose --no-default-features - - run: cargo test --verbose --all-features + - run: cargo test --verbose --features std,serde,sval,sval_ref,value-bag,kv,kv_std,kv_sval,kv_serde - run: cargo test --verbose --features serde - run: cargo test --verbose --features std - run: cargo test --verbose --features kv @@ -92,7 +92,7 @@ jobs: rustup default stable rustup component add rust-docs - name: Run rustdoc - run: RUSTDOCFLAGS="-D warnings" cargo doc --verbose --all-features + run: RUSTDOCFLAGS="-D warnings" cargo doc --verbose --features std,serde,sval,sval_ref,value-bag,kv,kv_std,kv_sval,kv_serde features: name: Feature check