From 85cee22d808ac7c91943c37f457bd64f572a5e52 Mon Sep 17 00:00:00 2001 From: SirCipher Date: Fri, 14 Jun 2024 14:19:06 +0100 Subject: [PATCH] CI --- .github/workflows/ci.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83510d0b4..c40ddbe01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,20 +6,6 @@ on: name: Continuous integration jobs: - check: - name: Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: 1.78.0 - override: true - - uses: actions-rs/cargo@v1 - with: - command: check - test: name: Test Suite runs-on: ${{ matrix.os }} @@ -36,7 +22,7 @@ jobs: with: toolchain: 1.78.0 - uses: Swatinem/rust-cache@v2 - - run: cargo test --all-features --all-targets --workspace + - run: cargo test --all-features --workspace --lib --tests --profile "ci" fmt: name: Rustfmt