Skip to content

fix: add buffered DMMF API to bypass V8 string length limit #6477

fix: add buffered DMMF API to bypass V8 string length limit

fix: add buffered DMMF API to bypass V8 string length limit #6477

Workflow file for this run

name: 'QC: Codespeed benchmarks'
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/benchmark.yml'
- '*.md'
- 'LICENSE'
- 'CODEOWNERS'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install cargo-codspeed
run: cargo install --locked cargo-codspeed
- name: 'Build the benchmark targets: schema'
run: cargo codspeed build -p schema --features all_connectors
- name: 'Build the benchmark targets: core-tests'
run: cargo codspeed build -p core-tests
- name: Run the benchmarks
uses: CodSpeedHQ/action@v3
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}