Skip to content

Commit

Permalink
ruff.yml: ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jul 12, 2024
1 parent 3406100 commit 4ab22df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- run: pip install --user codespell[toml] ruff
- run: codespell || true # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po"
- run: ruff --output-format=github --select=E9,F63,F7 --target-version=py37 .
- run: ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
- run: ruff --output-format=github --line-length=200 --target-version=py37 .
- run: ruff --output-format=github --target-version=py37 .
- run: ruff check --output-format=github --select=E9,F63,F7 --target-version=py37 .
- run: ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
- run: ruff check --output-format=github --line-length=200 --target-version=py37 .
- run: ruff check --output-format=github --target-version=py37 .

0 comments on commit 4ab22df

Please sign in to comment.