Skip to content

Commit

Permalink
Add black format checking to lint flow
Browse files Browse the repository at this point in the history
  • Loading branch information
JonatanMartens committed Oct 15, 2021
1 parent a01b15d commit 3e7e520
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,17 @@ jobs:
- name: Check imports
run: |
poetry run isort . --check --diff
format-checking:
runs-on: ubuntu-latest

container: python:3.8
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Check imports
run: |
poetry run black --check .

0 comments on commit 3e7e520

Please sign in to comment.