Skip to content

Commit 647850f

Browse files
committed
Include all Go files.
1 parent 9bec649 commit 647850f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bench.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
go install golang.org/x/perf/cmd/benchstat@latest
3030
echo "New Commit:"
3131
git log -1 --format="%H"
32-
go test -bench=. -benchmem -benchtime=100ms -count=10 > /tmp/new.txt
32+
go test -bench=. -benchmem -benchtime=100ms -count=10 ./... > /tmp/new.txt
3333
git reset --hard HEAD
3434
git checkout $GITHUB_BASE_REF
3535
echo "Base Commit:"
3636
git log -1 --format="%H"
37-
go test -bench=. -benchmem -benchtime=100ms -count=10 > /tmp/old.txt
37+
go test -bench=. -benchmem -benchtime=100ms -count=10 ./... > /tmp/old.txt
3838
$GOBIN/benchstat /tmp/old.txt /tmp/new.txt

0 commit comments

Comments
 (0)