forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (25 loc) · 758 Bytes
/
diff.yml
File metadata and controls
30 lines (25 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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