ci(check-and-build-and-test): wrap if check in ${{ and }}

This commit is contained in:
J / Jacob Babich
2024-10-09 13:27:11 -04:00
parent 57c37edd34
commit 0988559fff

View File

@@ -236,6 +236,6 @@ jobs:
working-directory: ${{ matrix.crate_directory }} working-directory: ${{ matrix.crate_directory }}
- name: Report actual MSRV and reason for failing the declared version - name: Report actual MSRV and reason for failing the declared version
if: steps.verify.outcome == "failure" if: ${{ steps.verify.outcome == "failure" }}
run: cargo msrv find && exit 1 run: cargo msrv find && exit 1
working-directory: ${{ matrix.crate_directory }} working-directory: ${{ matrix.crate_directory }}