We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef7e7c commit 675d167Copy full SHA for 675d167
.github/workflows/check.yml
@@ -23,4 +23,4 @@ jobs:
23
run: "pip install pre-commit"
24
25
- name: "Run checks with pre-commit"
26
- run: "pre-commit run --all-files --show-diff-on-failure --color always"
+ run: "make precommit"
Makefile
@@ -0,0 +1,3 @@
1
+.PHONY: precommit
2
+precommit:
3
+ pre-commit run --all-files --show-diff-on-failure --color always
0 commit comments