test: add rumdl violations fixture to probe CI annotations #118
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 Python | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-python: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| # yamllint disable-line rule:line-length | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Run ruff | |
| # yamllint disable-line rule:line-length | |
| uses: benner/action-ruff@b36eb590165f0ea36700bb92de15235c121f24f0 # v0.1.0 | |
| with: | |
| fail_level: error | |
| reporter: github-pr-review |