Skip to content

Addition of multiplierFESpace #80

Addition of multiplierFESpace

Addition of multiplierFESpace #80

Workflow file for this run

# adapted from https://github.com/tkf/BenchmarkCI.jl
name: Run benchmarks
on:
pull_request:
types: [unlabeled, opened, synchronize, reopened]
# Only trigger the benchmark job when `draft` label is not assigned to the PR
jobs:
benchmark:
name: Benchmark
runs-on: ubuntu-latest
env:
JULIA_DEBUG: BenchmarkCI
if: contains(github.event.pull_request.labels.*.name, 'draft') == false
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1.8'
- uses: julia-actions/julia-buildpkg@latest
- name: Install dependencies
run: julia -e 'using Pkg; pkg"add PkgBenchmark [email protected]"'
- name: Run benchmarks
run: julia -e 'using BenchmarkCI; BenchmarkCI.judge(baseline="origin/main")'
- name: Post results
run: julia -e "using BenchmarkCI; BenchmarkCI.postjudge()"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}