chore(deps): update taiki-e/install-action digest to 27e3d94 #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check MSRV | |
on: | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "**/*.md" | |
schedule: | |
- cron: "0 0 * * 0" | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
msrv: | |
name: Check MSRV | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
crate: [pace-rs, pace_core, pace_cli] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Install cargo-hack | |
uses: taiki-e/install-action@27e3d94e52be80f1af214f2f480823d7e6b752a2 # v2 | |
with: | |
tool: cargo-hack | |
- name: Run Cargo Hack | |
run: cargo hack check --rust-version -p ${{ matrix.crate }} | |
result: | |
name: Result (MSRV) | |
runs-on: ubuntu-latest | |
needs: msrv | |
steps: | |
- name: Mark the job as successful | |
run: exit 0 | |
if: success() | |
- name: Mark the job as unsuccessful | |
run: exit 1 | |
if: "!success()" |