We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 032c5b4 commit f32b3a0Copy full SHA for f32b3a0
1 file changed
.github/workflows/vectorlint.yml
@@ -29,10 +29,13 @@ jobs:
29
exit 1
30
fi
31
32
- - name: Verify formatting
+ - name: Verify Go formatting
33
# 'gofmt -l .' to list files whose formatting differs from gofmt's
34
# 'test -z' to verify that the output is empty
35
run: test -z "$(gofmt -l .)"
36
37
+ - name: Verify JSON formatting
38
+ run: ./tools/reformat_json.py && git diff --exit-code
39
+
40
- name: Run vectorlint
41
run: go run ./tools/vectorlint
0 commit comments