-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1014 Bytes
/
ach.yml
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
31
32
33
name: ACH Benchmarks
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
deployments: write
contents: write
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
# "The workflow must contain at least one job with no dependencies."
- run: date
benchmark:
uses: moov-io/benchmarks/.github/workflows/bench.yml@master
secrets: inherit
with:
name: ach
command: |
go test . -bench BenchmarkBuildFile -benchmem > output.txt
go test . -bench Read -benchmem >> output.txt
go test . -bench Write -benchmem >> output.txt
go test . -bench AlphaField -benchmem >> output.txt
go test . -bench NumericField -benchmem >> output.txt
go test . -bench ParseNumField -benchmem >> output.txt
go test . -bench ParseStringField -benchmem >> output.txt
go test . -bench BenchmarkMergeFiles -benchmem >> output.txt
go test . -bench BenchmarkCalculateCheckDigit -benchmem >> output.txt