Skip to content

Commit 2f07cd2

Browse files
testing
1 parent 9e0e01f commit 2f07cd2

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@ jobs:
5353

5454
- name: Build (CodeQL-instrumented)
5555
shell: bash
56-
env:
57-
GOTOOLCHAIN: local
5856
run: |
57+
export PATH="$(dirname "$CODEQL_ACTION_GO_BINARY"):$PATH"
5958
task build
6059
#go build ./...
6160
#go build ${BUILD_TAGS} ./...

Taskfile.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ tasks:
2121
build:
2222
deps: [install-libmongocrypt]
2323
cmds:
24-
- go build ./...
25-
- go build ${BUILD_TAGS} ./...
26-
#- task: build-tests
27-
#- task: compilecheck-119
28-
#- task: cross-compile
24+
- go clean -cache -testcache
25+
- GOTOOLCHAIN=local GOFLAGS=-a go build ./...
26+
- go test -run '^$' ./...
2927

3028
build-tests: go test -short ${BUILD_TAGS} -run ^$$ ./...
3129

0 commit comments

Comments
 (0)