From d5a50fb520033d1dce8ec1ebd5344b149c427414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Rica=20Pais=20da=20Silva?= Date: Thu, 18 Apr 2024 15:11:11 +0200 Subject: [PATCH] chore: Simplify CI runs --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f351ecd..ed514b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,13 +35,10 @@ jobs: - name: Run cargo check run: cargo check --all --all-features --all-targets if: startsWith(matrix.rust, 'nightly') - - name: Run cargo check - if: startsWith(matrix.rust, 'nightly') - run: cargo check - name: Full feature testing run: cargo test --all-features - - name: v4 compatibility testing - run: cargo test --no-default-features --features debug,rand_core,wyhash,randomised_wyhash + - name: No default compatibility testing + run: cargo test --no-default-features --features debug,rand_core,wyhash msrv: runs-on: ubuntu-latest