From 96eb687530191a3205d3504b530ce88c9767d5ee Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 26 Jul 2024 16:08:28 -0500 Subject: [PATCH] chore(ci): Don't check minimal versions for bins --- .github/workflows/ci.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8597884f..4215309f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: permissions: contents: none name: CI - needs: [test, msrv, lockfile, docs, rustfmt, clippy, minimal-versions] + needs: [test, msrv, lockfile, docs, rustfmt, clippy] runs-on: ubuntu-latest if: "always()" steps: @@ -67,24 +67,6 @@ jobs: - uses: taiki-e/install-action@cargo-hack - name: Default features run: cargo hack check --feature-powerset --locked --rust-version --ignore-private --workspace --all-targets - minimal-versions: - name: Minimal versions - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Install stable Rust - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable - - name: Install nightly Rust - uses: dtolnay/rust-toolchain@stable - with: - toolchain: nightly - - name: Downgrade dependencies to minimal versions - run: cargo +nightly generate-lockfile -Z minimal-versions - - name: Compile with minimal versions - run: cargo +stable check --workspace --all-features --locked lockfile: runs-on: ubuntu-latest steps: