File tree Expand file tree Collapse file tree 1 file changed +26
-19
lines changed
Expand file tree Collapse file tree 1 file changed +26
-19
lines changed Original file line number Diff line number Diff line change @@ -130,22 +130,29 @@ jobs:
130130 - name : Test if resolved
131131 run : bash test/checkFilesResolved.sh
132132
133- golangci :
134- name : Lint
135- runs-on : ubuntu-latest
136- steps :
137- - uses : actions/checkout@v4
138- - uses : actions/setup-go@v5
139- with :
140- go-version : ' 1.23'
141- - name : Pull Supported Formats
142- run : |
143- cd cmd/debricked
144- go generate -v -x
145- - name : Download modules
146- run : |
147- go mod download
148- - name : golangci-lint
149- uses : golangci/golangci-lint-action@v4
150- with :
151- version : v1.52
133+ golangci :
134+ name : Lint
135+ runs-on : ubuntu-latest
136+ steps :
137+ - uses : actions/checkout@v4
138+
139+ - uses : actions/setup-go@v5
140+ with :
141+ go-version : ' 1.23'
142+
143+ - name : Generate files
144+ working-directory : cmd/debricked
145+ run : go generate -v -x
146+
147+ - name : Download deps
148+ working-directory : cmd/debricked
149+ run : go mod download
150+
151+ - name : golangci-lint
152+ uses : golangci/golangci-lint-action@v6
153+ with :
154+ version : latest
155+ working-directory : cmd/debricked
156+ args : >
157+ --build-tags cli
158+
You can’t perform that action at this time.
0 commit comments