build(deps): Bump taiki-e/install-action from 2.46.11 to 2.46.20 #153
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: CI | |
on: | |
push: | |
branches: [main] | |
merge_group: | |
types: [checks_requested] | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
msrv: | |
name: MSRV Verify | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (MSRV) | |
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1 | |
with: | |
toolchain: "1.56" | |
- name: Install cargo-hack | |
uses: taiki-e/install-action@v2.46.20 | |
with: | |
tool: cargo-hack | |
- name: Generate MSRV lockfile | |
run: cargo hack --remove-dev-deps generate-lockfile | |
- name: Check | |
run: cargo check --workspace --all-features | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust (stable) | |
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1 | |
- name: Test | |
run: cargo test --workspace --all-features |