ExprNative interface - Allow easier use of custom types that can be represented by go builtin types #141
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: diff | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
bench: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go 1.18 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- name: Install benchstat | |
run: go install golang.org/x/perf/cmd/benchstat@latest | |
- uses: actions/checkout@v3 | |
- name: Benchmark new code | |
run: go test -bench=. -benchmem -run=^$ -count=10 -timeout=30m | tee /tmp/new.txt | |
- name: Checkout master | |
uses: actions/checkout@v3 | |
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 |