ci: explain why declared MSRV doesn't match actual MSRV

This commit is contained in:
J / Jacob Babich
2024-10-09 13:23:17 -04:00
parent 35c82f2092
commit 57c37edd34

View File

@@ -229,6 +229,13 @@ jobs:
shared-key: ${{ matrix.supporteds.target }}-latest-variable
cache-on-failure: "true"
- name: Verify MSRV (minimum supported Rust version)
- 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 }}