Improve documentation #102
Workflow file for this run
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: | |
pull_request: | |
types: [labeled, opened, synchronize, reopened] | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
# Only trigger the benchmark job when you add `run benchmark` label to the PR | |
jobs: | |
Benchmark: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created | |
contents: read | |
if: contains(github.event.pull_request.labels.*.name, 'run benchmark') | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1 | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@latest | |
- name: Install dependencies | |
run: julia -e 'using Pkg; pkg"add PkgBenchmark BenchmarkCI@0.1"' | |
- name: Run benchmarks | |
run: julia -e 'using BenchmarkCI; BenchmarkCI.judge(baseline="origin/main")' | |
- name: Print judgement | |
run: julia -e 'using BenchmarkCI; BenchmarkCI.displayjudgement()' | |
- name: Post results | |
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |