Skip to content

Commit

Permalink
Fix mypy package conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrieb committed Dec 21, 2023
1 parent 8d7f735 commit 72b9120
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
| sudo tar -C /usr/local/bin -xzv just
- name: Lint
run: |
just lint
just check
test:
name: Run all tests
needs: lint
Expand Down
7 changes: 6 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ alias lint := lint-python

lint-python:
black .
mypy .
mypy test/ just_sh/
ruff check --fix .

check:
black --check --diff --color .
mypy test/ just_sh/
ruff check .

0 comments on commit 72b9120

Please sign in to comment.