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 6fe8acb commit dfab100Copy full SHA for dfab100
.github/workflows/push.yml
@@ -114,7 +114,7 @@ jobs:
114
# Exit with status code 1 if there are differences (i.e. unformatted files)
115
git diff --exit-code
116
- name: Run whitespace check
117
- run: python tools/validate_whitespace.py
+ run: make ws
118
119
validate-bundle-schema:
120
needs: cleanups
Makefile
@@ -1,4 +1,4 @@
1
-default: vendor fmt lint tidy
+default: vendor fmt lint tidy ws
2
3
PACKAGES=./acceptance/... ./libs/... ./internal/... ./cmd/... ./bundle/... .
4
@@ -20,6 +20,9 @@ fmt:
20
ruff format -qn
21
golangci-lint fmt
22
23
+ws:
24
+ ./tools/validate_whitespace.py
25
+
26
test:
27
${GOTESTSUM_CMD} -- ${PACKAGES}
28
0 commit comments