We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328d54e commit 9b9fcc0Copy full SHA for 9b9fcc0
1 file changed
.github/workflows/go.yml
@@ -103,4 +103,10 @@ jobs:
103
- name: Get staticcheck
104
run: go install honnef.co/go/tools/cmd/staticcheck@latest
105
- name: Run staticcheck
106
- run: GOGC=30 staticcheck ./...
+ run: |
107
+ # staticcheck requires a lot of free disk space in /tmp. Free up worker
108
+ # space by removing unnecessary tooling.
109
+ rm -rf /usr/share/dotnet
110
+ rm -rf /usr/local/lib/android
111
+ rm -rf /opt/hostedtoolcache
112
+ GOGC=30 staticcheck ./...
0 commit comments