fix black and isort forever

This commit is contained in:
Kenneth Kehl
2025-01-22 13:45:42 -08:00
parent cfb966ce53
commit 5d565ab88b
2 changed files with 6 additions and 4 deletions

View File

@@ -38,10 +38,12 @@ jobs:
output: report-markdown
annotations: failed-tests
prnumber: ${{ steps.findPr.outputs.number }}
- name: Run black
run: poetry run black .
- name: Check imports alphabetized
run: poetry run isort ./app ./tests
- name: Run style checks
run: poetry run flake8 .
- name: Check imports alphabetized
run: poetry run isort --check-only ./app ./tests
- name: Check dead code
run: make dead-code
- name: Run js tests