ACH Benchmarks #100
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: 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 |