Skip to content

Commit

Permalink
Add style and format checking
Browse files Browse the repository at this point in the history
  • Loading branch information
rgallardone committed Jun 27, 2024
1 parent 974e39f commit d9ea12a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ jobs:
run: |
pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt
- name: Check format with black
run: black --check .

- name: Check style with flake8
run: flake8 .

- name: Check import sorting with isort
run: isort --check .

- name: Run model tests
run: make model-test

Expand Down

0 comments on commit d9ea12a

Please sign in to comment.