Skip to content

Commit

Permalink
Add isort linter to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
espdev committed Dec 18, 2023
1 parent 7c003d4 commit b23bb27
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
- name: Install the project dependencies
run: poetry install

- name: Run static analysis with ruff
run: poetry run ruff check .
- name: Run static analysis and linters
run: |
poetry run ruff check .
poetry run isort -c .
- name: Run tests
run: poetry run pytest -v --color=yes --cov=csaps --cov-report=term --cov-report=lcov:coverage.info
Expand Down

0 comments on commit b23bb27

Please sign in to comment.