From a64090a349baeef1b55cd03e121005e07789bd5b Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Thu, 12 Oct 2023 23:31:04 -0700 Subject: [PATCH] test: check with and without default features Now that features are being used, every combination needs to be tested. --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e0a209e..6a8d9ac 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,4 +18,6 @@ jobs: run: cargo fmt --check - name: Clippy check - run: cargo clippy --no-deps -- --deny=warnings + run: | + cargo clippy --no-deps -- --deny=warnings + cargo clippy --no-deps --no-default-features -- --deny=warnings