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 34d2cbe commit 2213166Copy full SHA for 2213166
.github/workflows/diff.yml
@@ -17,14 +17,14 @@ jobs:
17
18
- uses: actions/checkout@v2
19
- name: Benchmark new code
20
- run: go test -bench=. -benchmem -run=^$ -count=20 -timeout=30m | tee /tmp/new.txt
+ run: go test -bench=. -benchmem -run=^$ -count=10 -timeout=30m | tee /tmp/new.txt
21
22
- name: Checkout master
23
uses: actions/checkout@v2
24
with:
25
ref: master
26
- name: Benchmark master
27
- run: go test -bench=. -benchmem -run=^$ -count=20 -timeout=30m | tee /tmp/old.txt
+ run: go test -bench=. -benchmem -run=^$ -count=10 -timeout=30m | tee /tmp/old.txt
28
29
- name: Diff
30
run: benchstat /tmp/old.txt /tmp/new.txt
0 commit comments