Build(deps): Bump actions/checkout from 6 to 7 in the github-actions-deps group across 1 directory #859
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 | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{github.workflow}}-${{github.event.pull_request.number || github.ref}} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| clang-tidy: | |
| name: clang-tidy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: true | |
| - name: Run clang-tidy | |
| uses: ./.github/actions/run-linter | |
| with: | |
| lint_program_with_args: clang-tidy-cache clang-tidy-18 -p build --quiet --warnings-as-errors=* | |
| clazy: | |
| name: clazy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: true | |
| - name: Run clazy | |
| uses: ./.github/actions/run-linter | |
| with: | |
| lint_program_with_args: clang-tidy-cache clazy-standalone -p build --checks=level0,no-fully-qualified-moc-types,no-non-pod-global-static |