From 5f529811416dab5b0c09337c90c338f67ee12b5d Mon Sep 17 00:00:00 2001 From: J / Jacob Babich Date: Wed, 9 Oct 2024 23:15:17 -0400 Subject: [PATCH] ci(check-and-build-and-test): simplify the `msrv` job, because the output I see for `cargo msrv verify` is informative enough (not sure why I tried otherwise) --- .github/workflows/check-and-build-and-test.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/check-and-build-and-test.yml b/.github/workflows/check-and-build-and-test.yml index f7f4c5a..756941c 100644 --- a/.github/workflows/check-and-build-and-test.yml +++ b/.github/workflows/check-and-build-and-test.yml @@ -230,12 +230,5 @@ jobs: cache-on-failure: "true" - name: Verify declared MSRV (minimum supported Rust version) - id: verify - continue-on-error: true run: cargo msrv verify working-directory: ${{ matrix.crate_directory }} - - - name: Report actual MSRV and reason for failing the declared version - if: ${{ steps.verify.outcome == 'failure' }} - run: cargo msrv find && exit 1 - working-directory: ${{ matrix.crate_directory }}