Skip to content

Commit

Permalink
ci: setup benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Enter-tainer committed Nov 29, 2024
1 parent 7ab4277 commit 3f5efbf
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Benchmark
on:
push:
branches:
- master

permissions:
contents: write
deployments: write

jobs:
benchmark:
name: Run Rust benchmark example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run benchmark
run: cargo bench --output-format bencher | tee output.txt

- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: Rust Benchmark
tool: 'cargo'
output-file-path: output.txt
github-token: ${{ secrets.PAGES_RESULT_REPO_TOKEN }}
auto-push: true
# Show alert with commit comment on detecting possible performance regression
alert-threshold: '400%'
comment-on-alert: true
fail-on-alert: true
alert-comment-cc-users: '@Enter-tainer'
gh-repository: 'github.com/Enter-tainer/typstyle-bench-results'

0 comments on commit 3f5efbf

Please sign in to comment.