From 49eeb1d4947a66e558f81906dedeb3f90b810f97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Wed, 11 Dec 2024 14:39:44 +0100 Subject: [PATCH] chore: add verbose flag to benchmarks --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 0c099fdf..ed77771a 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -104,7 +104,7 @@ jobs: cd "$d" echo "Bench dir: $d" - go test ./... -benchmem -run=^$ -bench . | tee -a ../output.txt + go test ./... -v -benchmem -run=^$ -bench . | tee -a ../output.txt cd .. done shell: bash