Skip to content

Commit 932d113

Browse files
testing
1 parent bb8d73c commit 932d113

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ jobs:
5555
shell: bash
5656
env:
5757
GOTOOLCHAIN: local
58-
run: go build ./...
58+
#run: go build ./...
59+
run: task build
5960

6061
- name: Perform CodeQL Analysis
6162
uses: github/codeql-action/analyze@v4

Taskfile.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# See https://taskfile.dev/usage/
2-
version: '3'
2+
version: "3"
33

44
env:
55
TEST_TIMEOUT: 1800
66
LONG_TEST_TIMEOUT: 3600
77

8-
dotenv: ['.test.env']
8+
dotenv: [".test.env"]
99

1010
tasks:
11-
1211
### Utility tasks. ###
1312
default:
1413
deps: [build, check-license, check-fmt, check-modules, lint, test-short]
@@ -24,9 +23,9 @@ tasks:
2423
cmds:
2524
- go build ./...
2625
- go build ${BUILD_TAGS} ./...
27-
- task: build-tests
28-
- task: compilecheck-119
29-
- task: cross-compile
26+
#- task: build-tests
27+
#- task: compilecheck-119
28+
#- task: cross-compile
3029

3130
build-tests: go test -short ${BUILD_TAGS} -run ^$$ ./...
3231

0 commit comments

Comments
 (0)