This repository was archived by the owner on May 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11
11
command : git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/LF-Engineering".insteadOf "https://github.com/LF-Engineering"
12
12
- run :
13
13
name : Build Executable
14
- command : make confluence
14
+ command : make
15
15
- setup_remote_docker
16
16
- persist_to_workspace :
17
17
root : ./
78
78
workflows :
79
79
build-connector :
80
80
jobs :
81
- - build
81
+ - build :
82
+ filters :
83
+ tags :
84
+ only : /.*/
82
85
- deploy_dev :
83
86
context :
84
87
- development
Original file line number Diff line number Diff line change @@ -22,15 +22,19 @@ fmt: ${GO_BIN_FILES}
22
22
${GO_FMT} ${GO_BIN_FILES}
23
23
24
24
lint : ${GO_BIN_FILES}
25
+ go get -u golang.org/x/lint/golint
25
26
${GO_LINT} ${GO_BIN_FILES}
26
27
27
28
vet : ${GO_BIN_FILES}
29
+ go mod vendor
28
30
${GO_VET} ${GO_BIN_FILES}
29
31
30
32
imports : ${GO_BIN_FILES}
33
+ go install golang.org/x/tools/cmd/goimports@latest
31
34
${GO_IMPORTS} ${GO_BIN_FILES}
32
35
33
36
errcheck : ${GO_BIN_FILES}
37
+ go install github.com/kisielk/errcheck@latest
34
38
${GO_ERRCHECK} ${GO_BIN_FILES}
35
39
36
40
check : fmt lint imports vet errcheck
You can’t perform that action at this time.
0 commit comments