We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d87f50 commit 73711f9Copy full SHA for 73711f9
.github/workflows/black.yaml
@@ -24,4 +24,4 @@ jobs:
24
- name: Black version
25
run: pdm run black --version
26
- name: Black check
27
- run: pdm run black . --check
+ run: make black
Makefile
@@ -76,6 +76,9 @@ format: ## Format the code into unified format
76
pdm run ruff check scripts src --fix --per-file-ignores=scripts/*:S101
77
pdm run pre-commit run
78
79
+black:
80
+ pdm run black --check .
81
+
82
.PHONY: verify
83
verify: check-types check-format check-code-metrics check-coverage ## Verify the code using various linters
84
0 commit comments