Skip to content

Increasing number of benchmarks on GitHub action #1702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Increasing number of benchmarks on GitHub action
Now the number of times that the benchmarks are run before being
compared is 8 on the GitHub action.
  • Loading branch information
pafuent committed Dec 1, 2020
commit 364b7e6eca5483f127440a215c42936086a12bd3
4 changes: 2 additions & 2 deletions .github/workflows/echo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ jobs:
- name: Run Benchmark (Previous)
run: |
cd previous
go test -run="-" -bench=".*" -count=5 ./... > benchmark.txt
go test -run="-" -bench=".*" -count=8 ./... > benchmark.txt

- name: Run Benchmark (New)
run: |
cd new
go test -run="-" -bench=".*" -count=5 ./... > benchmark.txt
go test -run="-" -bench=".*" -count=8 ./... > benchmark.txt

- name: Run Benchstat
run: |
Expand Down