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 }}