File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ jobs:
346
346
strategy :
347
347
fail-fast : false
348
348
matrix :
349
- test-index : [0, 1]
349
+ test-index : [0, 1, 2 ]
350
350
needs : changes
351
351
if : github.event_name == 'push' || needs.changes.outputs.code == 'true'
352
352
runs-on : windows-2022
@@ -369,9 +369,11 @@ jobs:
369
369
run : |
370
370
if (${{ matrix.test-index }} -eq 0) {
371
371
go test ./... -short -race
372
- go test ./internal/cmd -run=TestScript -filter='^[0-9a-hA-h]' -race
372
+ go test ./internal/cmd -run=TestScript -filter='^[0-9a-dA-D]' -race
373
+ } elseif (${{ matrix.test-index }} -eq 1) {
374
+ go test ./internal/cmd -run=TestScript -filter='^[e-lE-L]' -race
373
375
} else {
374
- go test ./internal/cmd -run=TestScript -filter='^[i-zI -Z]' -race
376
+ go test ./internal/cmd -run=TestScript -filter='^[m-zM -Z]' -race
375
377
}
376
378
check :
377
379
runs-on : ubuntu-22.04
You can’t perform that action at this time.
0 commit comments