ci(check-and-build-and-test): use single quotes per https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions#literals
Some checks are pending
Release-plz / Release-plz (push) Waiting to run

This commit is contained in:
J / Jacob Babich
2024-10-09 13:32:27 -04:00
parent 0988559fff
commit 2404c8c035

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 }}