Skip to content

Commit

Permalink
Run linters during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanja-m committed Aug 7, 2023
1 parent 566a9a9 commit cf77f81
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: poetry install --no-interaction

- name: Run linter checks
run: |
source .venv/bin/activate
black gaps/ tests/ --check
mypy gaps/ tests/ --ignore-missing-imports
ruff check gaps/ tests/
- name: Run tests
run: |
source .venv/bin/activate
Expand Down

0 comments on commit cf77f81

Please sign in to comment.