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 fb1f221 commit b6034b4Copy full SHA for b6034b4
.github/workflows/go-tests.yml
@@ -32,7 +32,7 @@ jobs:
32
cd go
33
make
34
35
- - name: Check that all QL and Go code is autoformatted
+ - name: Check that all Go code is autoformatted
36
run: |
37
38
make check-formatting
go/Makefile
@@ -34,7 +34,6 @@ autoformat:
find . -path '**/vendor' -prune -or -type f -iname '*.go' ! -empty -print0 | xargs -0 grep -L "//\s*autoformat-ignore" | xargs gofmt -w
check-formatting:
- find ql -iregex '.*\.qll?' -print0 | xargs -0 codeql query format --check-only
test -z "$$(find . -path '**/vendor' -prune -or -type f -iname '*.go' ! -empty -print0 | xargs -0 grep -L "//\s*autoformat-ignore" | xargs gofmt -l)"
39
40
install-deps:
0 commit comments