Compare commits

...

3 Commits

View File

@@ -211,7 +211,7 @@ jobs:
target: x86_64-pc-windows-msvc target: x86_64-pc-windows-msvc
name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }}) name: Verify MSRV of ${{ matrix.crate_directory }} for ${{ matrix.supporteds.target }} (on ${{ matrix.supporteds.runner }})
runs-on: ${{ matrix.supporteds.runner }} runs-on: ${{ matrix.supporteds.runner }}
timeout-minutes: 2 timeout-minutes: 4
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -230,12 +230,5 @@ jobs:
cache-on-failure: "true" cache-on-failure: "true"
- name: Verify declared MSRV (minimum supported Rust version) - name: Verify declared MSRV (minimum supported Rust version)
id: verify run: cargo msrv verify --output-format json
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 }} working-directory: ${{ matrix.crate_directory }}