Update from RegioHelden's modulesync-config-django #142
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: | |
| # code pushed to pull request branch | |
| push: | |
| branches-ignore: | |
| - main | |
| # when draft state is removed (needed as automatically created PRs are not triggering this action) | |
| pull_request: | |
| types: [ready_for_review] | |
| jobs: | |
| # lint code for errors | |
| # see https://github.com/RegioHelden/github-reusable-workflows/blob/main/.github/workflows/python-ruff.yaml | |
| lint: | |
| name: Lint | |
| permissions: | |
| contents: read | |
| uses: RegioHelden/github-reusable-workflows/.github/workflows/python-ruff.yaml@v2.8.1 | |
| with: | |
| ruff-version: "0.15.10" |