Commit 748d1d9 1 parent 11fa192 commit 748d1d9 Copy full SHA for 748d1d9
File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -45,17 +45,13 @@ jobs:
45
45
runs-on : ${{ matrix.os }}
46
46
steps :
47
47
- uses : actions/checkout@v4
48
- - name : Set env
48
+ - run : mkdir D:\gotmp
49
49
if : runner.os == 'Windows'
50
- run : |
51
- echo "TITLE=foo" >> $GITHUB_ENV
52
50
- uses : actions/setup-go@v5
53
51
if : runner.os != 'Windows'
54
52
with :
55
53
go-version-file : go.mod
56
54
cache : true
57
- - run : mkdir D:\gotmp
58
- if : runner.os == 'Windows'
59
55
- uses : actions/setup-go@v5
60
56
if : runner.os == 'Windows'
61
57
env :
@@ -65,11 +61,16 @@ jobs:
65
61
with :
66
62
go-version-file : go.mod
67
63
cache : true
68
- - name : echo env
69
- if : runner.os == 'Windows'
70
- run : echo "$TITLE"
71
64
- env :
72
65
CGO_ENABLED : " 0"
66
+ if : runner.os != 'Windows'
67
+ run : go test -v ./...
68
+ - env :
69
+ CGO_ENABLED : " 0"
70
+ GOCACHE : " D:\\ gocache"
71
+ GOMODCACHE : " D:\\ gomodcache"
72
+ GOTMPDIR : " D:\\ gotmp"
73
+ if : runner.os == 'Windows'
73
74
run : go test -v ./...
74
75
75
76
system-test :
You can’t perform that action at this time.
0 commit comments