-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
029b938
commit 20d5cb8
Showing
6 changed files
with
325 additions
and
470 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
format: | ||
pipenv run ruff format 2020 2021 2024 | ||
uv run ruff format 2020 2021 2024 | ||
|
||
lint: | ||
pipenv run ruff check 2020 2021 2024 | ||
uv run ruff check 2020 2021 2024 | ||
|
||
types: | ||
find 2020 -maxdepth 1 -mindepth 1 -type d | xargs -n1 pipenv run mypy | ||
find 2021 -maxdepth 1 -mindepth 1 -type d | xargs -n1 pipenv run mypy | ||
find 2024 -maxdepth 1 -mindepth 1 -type d | xargs -n1 pipenv run mypy | ||
find 2020 -maxdepth 1 -mindepth 1 -type d | xargs -n1 uv run mypy | ||
find 2021 -maxdepth 1 -mindepth 1 -type d | xargs -n1 uv run mypy | ||
find 2024 -maxdepth 1 -mindepth 1 -type d | xargs -n1 uv run mypy | ||
|
||
ci: lint types | ||
pipenv run ruff format --check 2020 2021 2024 | ||
uv run ruff format --check 2020 2021 2024 | ||
|
||
.PHONY: ci format lint types |
Oops, something went wrong.