Skip to content

Commit

Permalink
Separate checks in lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Jan 14, 2025
1 parent 128931c commit 31fe6af
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,14 @@ jobs:
env:
ENVIRONMENT: local

- name: Lint
- name: Run black
run: |
black --check .
- name: Run mypy
run: |
mypy .
- name: Run ruff
run: |
ruff check .

0 comments on commit 31fe6af

Please sign in to comment.