chore(deps): update taiki-e/install-action digest to 4666e04 #1569
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
schedule: [cron: "40 1 * * *"] | |
name: Check MSRV of backhand | |
jobs: | |
build-test-backhand: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: | |
# msrv of backhand | |
- 1.75 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Populate cache | |
uses: ./.github/workflows/cache | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- run: cargo +${{ matrix.toolchain }} check --locked -p backhand | |
build-test-backhand-cli: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: | |
# msrv of backhand-cli | |
- 1.77 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Populate cache | |
uses: ./.github/workflows/cache | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- run: cargo +${{ matrix.toolchain }} check --locked -p backhand-cli |