This directory shows how to use github-action-benchmark
with go test -bench
command.
Official documentation for usage of go test -bench
:
https://pkg.go.dev/testing#hdr-Benchmarks
e.g.
- name: Run benchmark
run: go test -bench 'Benchmark' | tee output.txt
Store the benchmark results with step using the action. Please set go
to tool
input.
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'go'
output-file-path: output.txt
Please read 'How to use' section for common usage.