Skip to content

Codspeed test

Codspeed test #2

Workflow file for this run

name: codspeed-benchmarks
on:
push:
branches:
- "codspeed" # or "master"
pull_request:
# `workflow_dispatch` allows CodSpeed to trigger backtest
# performance analysis in order to generate initial data.
workflow_dispatch:
jobs:
benchmarks:

Check failure on line 13 in .github/workflows/codspeed.yml

View workflow run for this annotation

GitHub Actions / codspeed-benchmarks

Invalid workflow file

The workflow is not valid. .github/workflows/codspeed.yml (Line: 13, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: [test, nits]
steps:
- uses: actions/checkout@v3
- name: Setup rust toolchain, cache and cargo-codspeed binary
uses: moonrepo/setup-rust@v0
with:
channel: 1.70
cache-target: release
bins: cargo-codspeed
- name: Build the benchmark target(s)
run: cargo +1.70 codspeed build --features codspeed-criterion-compat
- name: Run the benchmarks
uses: CodSpeedHQ/action@v2
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}