-
Notifications
You must be signed in to change notification settings - Fork 249
42 lines (35 loc) · 986 Bytes
/
codspeed.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Codspeed Benchmark
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/benchmark.yml'
- '.buildkite/**'
- '*.md'
- 'LICENSE'
- 'CODEOWNERS'
- 'renovate.json'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
benchmark:
name: 'Run benchmarks on Linux'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install cargo-codspeed
run: cargo install cargo-codspeed
- name: 'Build the benchmark targets: schema'
run: cargo codspeed build -p schema
- name: 'Build the benchmark targets: request-handlers'
run: cargo codspeed build -p request-handlers
- name: Run the benchmarks
uses: CodSpeedHQ/action@v1
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}