Skip to content

fix(metrics): update mobc to latest version (#4193) #2

fix(metrics): update mobc to latest version (#4193)

fix(metrics): update mobc to latest version (#4193) #2

Workflow file for this run

name: Benchmark
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '.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 }}