Bump taiki-e/install-action from 2.82.7 to 2.82.10 #145
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: Language Checks | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**/*.md' | |
| - '.gitignore' | |
| - 'docs/**' | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '**/*.md' | |
| - '.gitignore' | |
| - 'docs/**' | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| rust-check: | |
| name: Rust check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fetch latest code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up Rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 # v1.17.0 | |
| with: | |
| cache: true | |
| rustflags: '' | |
| components: rustfmt, clippy | |
| - name: Install nightly rustfmt | |
| run: rustup toolchain install nightly --component rustfmt | |
| - name: Install cargo-make | |
| uses: taiki-e/install-action@50414676f9f5d50a65992c6dd2ed02641263226c # v2.82.10 | |
| with: | |
| tool: cargo-make | |
| - name: Install nextest | |
| uses: taiki-e/install-action@50414676f9f5d50a65992c6dd2ed02641263226c # v2.82.10 | |
| with: | |
| tool: nextest | |
| - name: Run Rust format check | |
| run: cargo make fmt-rust-check | |
| - name: Run Rust style check | |
| uses: ./ | |
| with: | |
| language: rust | |
| workspace: true | |
| args: --all-features | |
| version: checkout | |
| - name: Run Rust clippy | |
| run: cargo make check-rust | |
| - name: Run tests | |
| run: cargo make test-rust | |
| toml-check: | |
| name: TOML check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fetch latest code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up Rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 # v1.17.0 | |
| with: | |
| cache: true | |
| rustflags: '' | |
| - name: Install cargo-make | |
| uses: taiki-e/install-action@50414676f9f5d50a65992c6dd2ed02641263226c # v2.82.10 | |
| with: | |
| tool: cargo-make | |
| - name: Install taplo | |
| uses: taiki-e/install-action@50414676f9f5d50a65992c6dd2ed02641263226c # v2.82.10 | |
| with: | |
| tool: taplo | |
| - name: Run TOML format check | |
| run: cargo make fmt-toml-check |