Commit 30841e9 1 parent f72d937 commit 30841e9 Copy full SHA for 30841e9
File tree 6 files changed +7
-7
lines changed
6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 20
20
steps :
21
21
- name : Install Go
22
22
if : inputs.tools == 'all' || contains(inputs.tools, 'go')
23
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
23
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
24
24
with :
25
25
go-version : " 1.21.x"
26
26
cache-dependency-path : |
Original file line number Diff line number Diff line change 39
39
with :
40
40
persist-credentials : false
41
41
- name : Install go
42
- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
42
+ uses : actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
43
43
with :
44
44
# The versions of golangci-lint and setup-go here cross-depend and need to update together.
45
45
go-version : 1.23
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ jobs:
176
176
token : ${{ secrets.GITHUB_TOKEN }}
177
177
version : v2.5.0
178
178
- name : Run tests
179
- run : cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4
179
+ run : cd examples && go test -v - count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4
180
180
strategy :
181
181
fail-fast : false
182
182
matrix :
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ jobs:
117
117
token : ${{ secrets.GITHUB_TOKEN }}
118
118
version : v2.5.0
119
119
- name : Run tests
120
- run : cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
120
+ run : cd examples && go test -v - count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
121
121
strategy :
122
122
fail-fast : false
123
123
matrix :
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ jobs:
123
123
token : ${{ secrets.GITHUB_TOKEN }}
124
124
version : v2.5.0
125
125
- name : Run tests
126
- run : cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
126
+ run : cd examples && go test -v - count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
127
127
strategy :
128
128
fail-fast : false
129
129
matrix :
Original file line number Diff line number Diff line change @@ -173,10 +173,10 @@ jobs:
173
173
version : v2.5.0
174
174
- name : Run tests
175
175
if : matrix.testTarget == 'local'
176
- run : cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -skip TestPulumiExamples -parallel 4 .
176
+ run : cd examples && go test -v - count=1 -cover -timeout 2h -tags=${{ matrix.language }} -skip TestPulumiExamples -parallel 4 .
177
177
- name : Run pulumi/examples tests
178
178
if : matrix.testTarget == 'pulumiExamples'
179
- run : cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -run TestPulumiExamples -parallel 4 .
179
+ run : cd examples && go test -v - count=1 -cover -timeout 2h -tags=${{ matrix.language }} -run TestPulumiExamples -parallel 4 .
180
180
strategy :
181
181
fail-fast : false
182
182
matrix :
You can’t perform that action at this time.
0 commit comments