Skip to content

Commit

Permalink
chore: change "make fix/check" into "make ci-fix/ci-check"
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Nov 10, 2023
1 parent c37e4fe commit 6b538d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:
- name: Do linting
run: |
make check
make ci-check
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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 .

0 comments on commit 6b538d0

Please sign in to comment.