Empty commit to test merge #19
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: Run Benchmarks | |
on: [push, pull_request] | |
jobs: | |
benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Run Go Benchmark Action | |
uses: patrickhuie19/[email protected] | |
with: | |
benchmarks-pr: 'from-pr' # Use benchmarks specified in PR, or default benchmarks | |
benchmarks-merge: 'BenchmarkAdd' | |
trigger-branches: 'main' # Comma-separated list of branches for merging | |
use-gh-pages: 'true' # Enable or disable GitHub Pages | |
github-token: ${{ secrets.GITHUB_TOKEN }} # Use the built-in GitHub token | |
gh-pages-branch: 'gh-pages' # GitHub Pages branch (if use-gh-pages is true) | |
alert-comment-cc-users: '@patrickhuie19' |