Skip to content

Commit

Permalink
Ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
uogbuji committed Jul 18, 2024
1 parent 01d1d6b commit 88df3be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
run: |
# stop the build if there are Python syntax errors or undefined names
# ruff --format=github --select=E9,F63,F7,F82 --target-version=py311 . # No longer works
ruff --select=E9,F63,F7,F82 --target-version=py311 .
ruff check --select=E9,F63,F7,F82 --target-version=py311 .
# default set of ruff rules with GitHub Annotations
# ruff --format=github --target-version=py311 . # No longer works
ruff --target-version=py311 .
ruff check --target-version=py311 .
- name: Test with pytest
env:
PG_HOST: 0.0.0.0
Expand Down

0 comments on commit 88df3be

Please sign in to comment.