Skip to content

Commit

Permalink
ci: Add a new benchmark recording workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed May 4, 2024
1 parent d6fd429 commit 3b7d746
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: benchmark
on:
pull_request: # for testing
push:
branches:
- main

jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: true
- name: benchmark
run: |
make bench
- uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- uses: benchmark-action/github-action-benchmark@v1
with:
# What benchmark tool the output.txt came from
tool: 'go'
# Where the output from the benchmark tool is stored
output-file-path: test-results/benchmark-results-${GITHUB_REF_NAME}
# Where the previous data file is stored
external-data-json-path: ./cache/benchmark-data.json
# Workflow will fail when an alert happens
fail-on-alert: true
# comment-on-alert: true
# github-token: ${{ secrets.GITHUB_TOKEN }}
# summary-always: true

0 comments on commit 3b7d746

Please sign in to comment.