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 6de5dc3 commit f58c2f1Copy full SHA for f58c2f1
.github/workflows/benchmark.yml
@@ -37,7 +37,7 @@ jobs:
37
- run: npm ci
38
39
- name: Run benchmark
40
- run: go test -run='^$' -bench=. -benchmem -count=10 ./... > new.txt
+ run: go test -run='^$' -bench=. -benchmem -count=10 ./... | tee new.txt
41
42
- name: Switch to parent commit
43
run: git switch --detach HEAD^1
@@ -47,7 +47,7 @@ jobs:
47
- run: git submodule update --init --recursive
48
49
50
- run: go test -run='^$' -bench=. -benchmem -count=10 ./... > old.txt
+ run: go test -run='^$' -bench=. -benchmem -count=10 ./... | tee old.txt
51
52
- run: go install golang.org/x/perf/cmd/benchstat@latest
53
0 commit comments