1
0
mirror of https://github.com/labstack/echo.git synced 2024-11-24 08:22:21 +02:00

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.
This commit is contained in:
Pablo Andres Fuente 2020-12-01 04:39:06 +00:00
parent 502cce28d5
commit 364b7e6eca

View File

@ -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: |