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 1d53601 commit 5323f2aCopy full SHA for 5323f2a
.github/workflows/codeql.yml
@@ -55,11 +55,23 @@ jobs:
55
shell: bash
56
env:
57
GOTOOLCHAIN: local
58
+ GOWORK: off
59
+ GO_VERSIONS: "1.19"
60
+ COMPILECHECK_USE_DOCKER: "0"
61
run: |
62
go build ./...
63
go build ${BUILD_TAGS} ./...
64
go test -short ${BUILD_TAGS} -run ^$$ ./...
65
66
+ go test -v ./internal/test/compilecheck -run '^TestCompileCheck/golang:1.19$'
67
+
68
+ GOOS=linux GOARCH=386 go build ./...
69
+ GOOS=linux GOARCH=arm go build ./...
70
+ GOOS=linux GOARCH=arm64 go build ./...
71
+ GOOS=linux GOARCH=amd64 go build ./...
72
+ GOOS=linux GOARCH=ppc64le go build ./...
73
+ GOOS=linux GOARCH=s390x go build ./...
74
75
- name: Perform CodeQL Analysis
76
uses: github/codeql-action/analyze@v4
77
with:
0 commit comments