From 5d0c276e479f5a889ea952585f897b0cab69f14b Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Thu, 8 May 2025 08:36:44 +0200 Subject: [PATCH] ci: Run all tests with none and all features --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae4c384e..9202da9f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -99,7 +99,8 @@ jobs: - uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8 with: key: test - - run: cargo test --all-features + - run: cargo test --no-default-features --workspace + - run: cargo test --all-features --workspace tests_passed: name: All tests passed