-
-
Notifications
You must be signed in to change notification settings - Fork 126
26 lines (25 loc) · 706 Bytes
/
Copy pathbenchmarks.yml
File metadata and controls
26 lines (25 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
on:
workflow_dispatch:
pull_request:
paths:
- 'crates/torin/**/*'
- '.github/workflows/benchmarks.yml'
- 'rust-toolchain.toml'
- 'Cargo.toml'
name: Run Benchmarks
jobs:
runBenchmark:
name: run benchmark
runs-on: ubuntu-latest
concurrency:
group: benchmarks-${{ github.ref_name }}
cancel-in-progress: true
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: true
- uses: boa-dev/criterion-compare-action@59f4d964c5f19d7f13d36f5c0944b18ce6652cb0
with:
package: torin
branchName: ${{ github.base_ref }}
token: ${{ github.token }}