Skip to content

Commit b6034b4

Browse files
committed
delete language specific format check
1 parent fb1f221 commit b6034b4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cd go
3333
make
3434
35-
- name: Check that all QL and Go code is autoformatted
35+
- name: Check that all Go code is autoformatted
3636
run: |
3737
cd go
3838
make check-formatting

go/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ autoformat:
3434
find . -path '**/vendor' -prune -or -type f -iname '*.go' ! -empty -print0 | xargs -0 grep -L "//\s*autoformat-ignore" | xargs gofmt -w
3535

3636
check-formatting:
37-
find ql -iregex '.*\.qll?' -print0 | xargs -0 codeql query format --check-only
3837
test -z "$$(find . -path '**/vendor' -prune -or -type f -iname '*.go' ! -empty -print0 | xargs -0 grep -L "//\s*autoformat-ignore" | xargs gofmt -l)"
3938

4039
install-deps:

0 commit comments

Comments
 (0)