Skip to content

Commit 5323f2a

Browse files
testing
1 parent 1d53601 commit 5323f2a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,23 @@ jobs:
5555
shell: bash
5656
env:
5757
GOTOOLCHAIN: local
58+
GOWORK: off
59+
GO_VERSIONS: "1.19"
60+
COMPILECHECK_USE_DOCKER: "0"
5861
run: |
5962
go build ./...
6063
go build ${BUILD_TAGS} ./...
6164
go test -short ${BUILD_TAGS} -run ^$$ ./...
6265
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+
6375
- name: Perform CodeQL Analysis
6476
uses: github/codeql-action/analyze@v4
6577
with:

0 commit comments

Comments
 (0)