From 364b7e6eca5483f127440a215c42936086a12bd3 Mon Sep 17 00:00:00 2001 From: Pablo Andres Fuente Date: Tue, 1 Dec 2020 04:39:06 +0000 Subject: [PATCH] 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. --- .github/workflows/echo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/echo.yml b/.github/workflows/echo.yml index 839530e2..df3a1d70 100644 --- a/.github/workflows/echo.yml +++ b/.github/workflows/echo.yml @@ -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: |