delete language specific format check

This commit is contained in:
erik-krogh
2022-11-25 16:22:46 +01:00
parent fb1f22144d
commit b6034b4935
2 changed files with 1 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ jobs:
cd go
make
- name: Check that all QL and Go code is autoformatted
- name: Check that all Go code is autoformatted
run: |
cd go
make check-formatting

View File

@@ -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)"
install-deps: