Skip to content

Commit

Permalink
chore: rename Makefile command names
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Dec 13, 2023
1 parent fbc83f3 commit 6a517a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
- name: Do linting
run: |
make check
make ci-check
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.PHONY: all
all: fix

.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 .
Expand Down

0 comments on commit 6a517a8

Please sign in to comment.