Skip to content

Commit

Permalink
lint_python.yml: ruff check --output-format=github
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Nov 9, 2024
1 parent 06a5e14 commit 5f2a2b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- run: pip install --upgrade pip setuptools wheel
- run: pip install black codespell mypy pytest ruff safety
- run: ruff --output-format=github --ignore=E501,E701,E713,E722,F401,F403,F405,F841 --line-length=263 .
- run: black --check . || true
- run: pip install codespell mypy pytest ruff safety
- run: ruff check --output-format=github --ignore=E501,E701,E713,E722,F401,F403,F405,F841 --line-length=263 .
- run: ruff format || true
- run: codespell --ignore-words-list="datas" --skip="./.git/*"
- run: pip install -r requirements.txt
- run: mypy --install-types --non-interactive . || true
Expand Down

0 comments on commit 5f2a2b3

Please sign in to comment.