diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index bcc640e6..afc3ae6a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -48,4 +48,4 @@ jobs: - name: Do linting run: | - make check + make ci-check diff --git a/Makefile b/Makefile index a3cde31c..73a0b4cf 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,19 @@ .PHONY: all -all: fix +all: .PHONY: install install: pip install -U pip -r requirements.txt -.PHONY: check -check: +.PHONY: ci-check +ci-check: mypy -p plugin flake8 . black --check --diff --preview . isort --check --diff . -.PHONY: fix -fix: +.PHONY: ci-fix +ci-fix: autoflake --in-place . black --preview . isort .