mirror of
https://github.com/rust-bakery/nom.git
synced 2026-03-28 06:40:42 +00:00
33 lines
798 B
YAML
33 lines
798 B
YAML
name: codspeed-benchmarks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
pull_request:
|
|
# `workflow_dispatch` allows CodSpeed to trigger backtest
|
|
# performance analysis in order to generate initial data.
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
benchmarks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup rust toolchain, cache and cargo-codspeed binary
|
|
uses: moonrepo/setup-rust@v0
|
|
with:
|
|
channel: stable
|
|
cache-target: release
|
|
bins: cargo-codspeed
|
|
|
|
- name: Build the benchmark target(s)
|
|
run: cargo codspeed build -p benchmarks
|
|
|
|
- name: Run the benchmarks
|
|
uses: CodSpeedHQ/action@v3
|
|
with:
|
|
run: cargo codspeed run -p benchmarks
|
|
token: ${{ secrets.CODSPEED_TOKEN }}
|