chore(deps): bump insta from 1.40.0 to 1.41.0 in the dependencies group #40
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: ReviewDog-Suggester | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write # see https://github.com/reviewdog/action-eslint/issues/147 | |
on: [ pull_request, workflow_dispatch ] # Support only pull_request event or trigger manually | |
jobs: | |
cargo-clippy-suggest: | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [ stable ] | |
name: suggester / cargo-clippy | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false # https://github.com/orgs/community/discussions/25722 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install ${{ matrix.toolchain }} | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy | |
- run: cargo clippy --fix | |
- name: Suggest in PR comments | |
uses: reviewdog/action-suggester@v1 | |
with: | |
tool_name: clippy |