From 7d371fa621681fb21fbc97a95ff3980be3b085f3 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Sun, 1 Oct 2023 16:36:08 +0100 Subject: [PATCH] Run benchmarks on PRs --- .github/workflows/benchmarks.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/benchmarks.yml diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml new file mode 100644 index 000000000..dc61c1de2 --- /dev/null +++ b/.github/workflows/benchmarks.yml @@ -0,0 +1,14 @@ +on: + pull_request: + +name: Run Benchmarks +jobs: + runBenchmark: + name: run benchmark + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: boa-dev/criterion-compare-action@59f4d964c5f19d7f13d36f5c0944b18ce6652cb0 + with: + subdirectory: benches + branchName: ${{ github.base_ref }} \ No newline at end of file