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 fa88295 commit edbd88aCopy full SHA for edbd88a
.github/workflows/ci.yml
@@ -19,6 +19,13 @@ defaults:
19
run:
20
shell: pwsh
21
22
+env:
23
+ # Fix slow Go compile and cache restore
24
+ # See https://github.com/actions/setup-go/pull/515
25
+ GOCACHE: D:\gocache
26
+ GOMODCACHE: D:\gomodcache
27
+ GOTMPDIR: D:\gotmp
28
+
29
jobs:
30
audit:
31
name: Audit
@@ -33,6 +40,10 @@ jobs:
33
40
with:
34
41
fetch-depth: 0
35
42
43
+ # Go requires gotmp to be present
44
+ - run: mkdir D:\gotmp
45
+ shell: pwsh
46
36
47
- uses: actions/setup-go@v5
37
48
38
49
go-version: "1.24"
@@ -83,6 +94,10 @@ jobs:
83
94
84
95
85
96
97
98
99
100
86
101
- name: Set up Go
87
102
uses: actions/setup-go@v5
88
103
0 commit comments