This repository was archived by the owner on Aug 30, 2025. It is now read-only.
build(deps): Bump taiki-e/install-action from 2.52.1 to 2.52.4 #202
Workflow file for this run
This file contains hidden or 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/[email protected] | |
| with: | |
| toolchain: "1.56" | |
| - name: Install cargo-hack | |
| uses: taiki-e/[email protected] | |
| 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/[email protected] | |
| - name: Test | |
| run: cargo test --workspace --all-features |