File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
go:test-unit :
29
29
desc : Run unit tests
30
30
cmds :
31
- - go test -short -run '{{ default ".*" .TEST_REGEX }}' {{ default "-v" .GOFLAGS }} -coverprofile=coverage_unit.txt {{ default .DEFAULT_PACKAGES .PACKAGES }}
31
+ - go test -short -run '{{ default ".*" .TEST_REGEX }}' {{ default "-v" .GOFLAGS }} -coverprofile=coverage_unit.txt {{ default .DEFAULT_GO_PACKAGES .GO_PACKAGES }}
32
32
33
33
test-integration :
34
34
desc : Run integration tests
80
80
go:vet :
81
81
desc : Check for errors in Go code
82
82
cmds :
83
- - go vet {{default .DEFAULT_PACKAGES .PACKAGES }}
83
+ - go vet {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES }}
84
84
85
85
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-go-task/Taskfile.yml
86
86
go:fix :
@@ -108,7 +108,7 @@ tasks:
108
108
go:format :
109
109
desc : Format Go code
110
110
cmds :
111
- - go fmt {{default .DEFAULT_PACKAGES .PACKAGES }}
111
+ - go fmt {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES }}
112
112
113
113
python:check :
114
114
cmds :
@@ -277,7 +277,7 @@ tasks:
277
277
vars :
278
278
PROJECT_NAME : " arduino-lint"
279
279
DIST_DIR : " dist"
280
- DEFAULT_PACKAGES :
280
+ DEFAULT_GO_PACKAGES :
281
281
sh : echo `go list ./... | tr '\n' ' '`
282
282
# build vars
283
283
COMMIT :
You can’t perform that action at this time.
0 commit comments