Commit f2e2646 1 parent e129ba2 commit f2e2646 Copy full SHA for f2e2646
File tree 4 files changed +24
-6
lines changed
4 files changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,13 @@ jobs:
286
286
- license_check
287
287
runs-on : ubuntu-latest
288
288
steps :
289
+ - name : Free Disk Space (Ubuntu)
290
+ uses : jlumbroso/free-disk-space@main
291
+ with :
292
+ # this might remove tools that are actually needed,
293
+ # if set to "true" but frees about 6 GB
294
+ tool-cache : false
295
+ swap-storage : false
289
296
- name : Checkout Repo
290
297
uses : actions/checkout@v4
291
298
- name : Unshallow clone for tags
Original file line number Diff line number Diff line change @@ -229,6 +229,13 @@ jobs:
229
229
- license_check
230
230
runs-on : ubuntu-latest
231
231
steps :
232
+ - name : Free Disk Space (Ubuntu)
233
+ uses : jlumbroso/free-disk-space@main
234
+ with :
235
+ # this might remove tools that are actually needed,
236
+ # if set to "true" but frees about 6 GB
237
+ tool-cache : false
238
+ swap-storage : false
232
239
- name : Checkout Repo
233
240
uses : actions/checkout@v4
234
241
- name : Unshallow clone for tags
Original file line number Diff line number Diff line change @@ -243,6 +243,13 @@ jobs:
243
243
- license_check
244
244
runs-on : ubuntu-latest
245
245
steps :
246
+ - name : Free Disk Space (Ubuntu)
247
+ uses : jlumbroso/free-disk-space@main
248
+ with :
249
+ # this might remove tools that are actually needed,
250
+ # if set to "true" but frees about 6 GB
251
+ tool-cache : false
252
+ swap-storage : false
246
253
- name : Checkout Repo
247
254
uses : actions/checkout@v4
248
255
- name : Unshallow clone for tags
Original file line number Diff line number Diff line change 2
2
3
3
linters :
4
4
enable :
5
- - deadcode
6
5
- errcheck
6
+ - gci
7
7
- goconst
8
8
- gofmt
9
- - golint
10
9
- gosec
11
10
- govet
12
11
- ineffassign
13
- - interfacer
14
12
- lll
15
13
- megacheck
16
14
- misspell
17
15
- nakedret
18
- - structcheck
16
+ - revive
19
17
- unconvert
20
- - varcheck
21
- - gci
18
+ - unused
22
19
enable-all : false
23
20
run :
24
21
skip-files :
You can’t perform that action at this time.
0 commit comments