chore(deps): Bump langston-barrett/gha/.github/workflows/rust-ci.yml from 7c0b05df2a8448a462b987298e62bf8f61776fef to e301defafac5610638fe6b6b6afb867557d02f0a #93
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: lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - uses: langston-barrett/gha/.github/actions/install-linters@7c0b05df2a8448a462b987298e62bf8f61776fef | |
| - uses: langston-barrett/lun/.github/actions/lun@4ff0bb8913126e9f4660c6fb2a10e868e709c9b7 | |
| with: | |
| flags: "--color=always" | |
| # clippy is run in rust-ci.yml | |
| run-flags: "--check --skip-tool='cargo clippy'" |