Skip to content

Commit

Permalink
Run pylint in CI workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Mattt Zmuda <[email protected]>
  • Loading branch information
mattt committed Oct 29, 2023
1 parent be16bb4 commit e62ac30
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ jobs:
- name: Lint
run: |
python -m mypy replicate
python -m ruff .
python -m ruff format --check .
EXIT_STATUS=0
python -m mypy replicate || EXIT_STATUS=$?
python -m pylint replicate || EXIT_STATUS=$?
python -m ruff . || EXIT_STATUS=$?
python -m ruff format --check . || EXIT_STATUS=$?
exit $EXIT_STATUS
- name: Test
run: python -m pytest

0 comments on commit e62ac30

Please sign in to comment.