File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 18
18
iterationCount :
19
19
description : ' Iteration Count'
20
20
required : false
21
- default : ' 15 '
21
+ default : ' 10 '
22
22
23
23
# Cancel in-progress runs for pull requests when developers push
24
24
# additional changes, and serialize builds in branches.
69
69
- name : Test with Mock Database
70
70
shell : bash
71
71
env :
72
- GOCOUNT : ${{ github.event.inputs.iterationCount || 15 }}
72
+ GOCOUNT : ${{ github.event.inputs.iterationCount || 10 }}
73
73
GOMAXPROCS : ${{ runner.os == 'Windows' && 1 || 2 }}
74
74
run : gotestsum --junitfile="gotests.xml" --packages="./..." --
75
75
-covermode=atomic -coverprofile="gotests.coverage"
86
86
- name : Test with PostgreSQL Database
87
87
if : runner.os == 'Linux'
88
88
env :
89
- GOCOUNT : ${{ github.event.inputs.iterationCount || 15 }}
89
+ GOCOUNT : ${{ github.event.inputs.iterationCount || 10 }}
90
90
run : DB=true gotestsum --junitfile="gotests.xml" --packages="./..." --
91
91
-covermode=atomic -coverprofile="gotests.coverage" -timeout=15m
92
92
-count=$GOCOUNT -race -parallel=2 -failfast
You can’t perform that action at this time.
0 commit comments