We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef7e7c commit 1a8779bCopy full SHA for 1a8779b
.github/workflows/check.yml
@@ -22,5 +22,5 @@ jobs:
22
- name: "Install pre-commit"
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"
+ - name: "Run lint and format checks"
+ run: "make lint"
Makefile
@@ -0,0 +1,3 @@
1
+.PHONY: lint
2
+lint:
3
+ pre-commit run --all-files --show-diff-on-failure --color always
0 commit comments