We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328d54e commit c02e8c8Copy full SHA for c02e8c8
.github/workflows/go.yml
@@ -103,4 +103,11 @@ 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/share/boost
111
+ rm -rf /usr/local/lib/android
112
+ rm -rf /opt/hostedtoolcache/CodeQL
113
+ GOGC=30 staticcheck ./...
0 commit comments