Merge pull request #329 from nathanchance/more-ruff-lints #454
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
| # Run linters on code in repo | |
| # * shellcheck and shfmt for shell scripts | |
| # * various tools for Python scripts | |
| name: Lint checks | |
| on: [push, pull_request] | |
| jobs: | |
| python: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: ['3.14', '3.13', '3.12', '3.11', '3.10', '3.9'] | |
| uses: ClangBuiltLinux/actions-workflows/.github/workflows/python_lint.yml@main | |
| with: | |
| python_version: ${{ matrix.version }} | |
| ty: true | |
| shellcheck: | |
| uses: ClangBuiltLinux/actions-workflows/.github/workflows/shellcheck.yml@main | |
| shfmt: | |
| uses: ClangBuiltLinux/actions-workflows/.github/workflows/shfmt.yml@main |