Skip to content

Add variables

Add variables #112

Workflow file for this run

name: diff
on:
pull_request:
branches: [ master ]
jobs:
bench:
runs-on: ubuntu-latest
steps:
- name: Setup Go 1.19
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Install benchstat
run: go install golang.org/x/perf/cmd/benchstat@latest
- uses: actions/checkout@v2
- name: Benchmark new code
run: go test -bench=. -benchmem -run=^$ -count=10 -timeout=30m | tee /tmp/new.txt
- name: Checkout master
uses: actions/checkout@v2
with:
ref: master
- name: Benchmark master
run: go test -bench=. -benchmem -run=^$ -count=10 -timeout=30m | tee /tmp/old.txt
- name: Diff
run: benchstat /tmp/old.txt /tmp/new.txt