From e74b66c4e08265bfd3a73ef21a44f502556fff1e Mon Sep 17 00:00:00 2001 From: Josh Stoik Date: Thu, 17 Oct 2024 12:09:23 -0700 Subject: [PATCH] ci: remove --all-features bits --- .github/workflows/ci.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46c70f8..9050a3c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,14 +57,11 @@ jobs: - name: Clippy run: | cargo clippy --release --target ${{ matrix.target }} - cargo clippy --release --all-features --target ${{ matrix.target }} - name: Tests (Debug) run: | cargo test --target ${{ matrix.target }} - cargo test --all-features --target ${{ matrix.target }} - name: Tests (Release) run: | cargo test --release --target ${{ matrix.target }} - cargo test --release --all-features --target ${{ matrix.target }}