Skip to content

Add quality code tests: Aqua.jl + method ambiguities test #1946

Add quality code tests: Aqua.jl + method ambiguities test

Add quality code tests: Aqua.jl + method ambiguities test #1946

Workflow file for this run

name: Run benchmarks
on:
pull_request:
types: [labeled, opened, synchronize, reopened]
jobs:
benchmark:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'run benchmark')
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: 1.5
- name: Install dependencies
run: julia -e 'using Pkg; pkg"add PkgBenchmark BenchmarkCI"'
- name: Run benchmarks
run: julia -e '
using PkgBenchmark, BenchmarkCI;
BenchmarkCI.judge();
'
- name: Post results
run: julia -e 'using BenchmarkCI; BenchmarkCI.postjudge()'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}