Skip to content

CompatHelper: bump compat for DynamicPPL to 0.30 for package EpiAware, (drop existing compat) #376

CompatHelper: bump compat for DynamicPPL to 0.30 for package EpiAware, (drop existing compat)

CompatHelper: bump compat for DynamicPPL to 0.30 for package EpiAware, (drop existing compat) #376

Workflow file for this run

name: Run benchmarks
on:
workflow_dispatch:
pull_request:
paths:
- 'EpiAware/**'
- 'benchmark/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v1
- name: Install dependencies
run: |
julia --project=benchmark -e 'using Pkg;
Pkg.instantiate()'
- name: Run benchmarks
run: julia --project=benchmark -e 'using BenchmarkCI; BenchmarkCI.judge(; baseline = "origin/main", retune = true)'
- name: Post results
run: julia --project=benchmark -e 'using BenchmarkCI; BenchmarkCI.postjudge()'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}