From c27feb56d2312244643596031c27f9b6f12933b0 Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Sun, 31 Mar 2024 00:04:40 -0700 Subject: [PATCH] Remove "all features" job b/c it's a duplicate of the cargo hack job --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d752732..9a65591c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,8 @@ env: CARGO_TERM_COLOR: always jobs: + # `cargo hack --each-feature` runs the given command for each feature, including "no features", "all features", + # and the `default` feature. roadster_each_feature: name: Each feature runs-on: ubuntu-latest @@ -23,18 +25,6 @@ jobs: - name: Clippy run: cargo hack clippy --workspace --all-targets --each-feature -- -D warnings - roadster_all_features: - name: All features - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Test - run: cargo test --no-fail-fast --all-features --workspace - - name: Check - run: cargo check --all-features --workspace - - name: Clippy - run: cargo clippy --workspace --all-targets --all-features -- -D warnings - check_formatting: name: Formatting runs-on: ubuntu-latest