Skip to content

Commit

Permalink
automate formatting and import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Kehl committed Jan 23, 2025
1 parent 2d2a54b commit a5a9522
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,13 @@ jobs:
NOTIFY_E2E_TEST_HTTP_AUTH_PASSWORD: ${{ secrets.NOTIFY_E2E_TEST_HTTP_AUTH_PASSWORD }}
NOTIFY_E2E_TEST_HTTP_AUTH_USER: ${{ secrets.NOTIFY_E2E_TEST_HTTP_AUTH_USER }}
NOTIFY_E2E_TEST_PASSWORD: ${{ secrets.NOTIFY_E2E_TEST_PASSWORD }}

- name: Check imports alphabetized
run: poetry run isort ./app ./tests
- name: Run formatting
run: poetry run black .
- name: Run style checks
run: poetry run flake8 .
- name: Check imports alphabetized
run: poetry run isort --check-only ./app ./tests
- name: Check for dead code
run: make dead-code
- name: Run tests with coverage
Expand Down

0 comments on commit a5a9522

Please sign in to comment.