Skip to content
This repository was archived by the owner on May 5, 2026. It is now read-only.

Nightly Benchmarks

Nightly Benchmarks #10

Workflow file for this run

name: Nightly Benchmarks
on:
schedule:
- cron: '30 4 * * *'
workflow_dispatch:
permissions:
contents: write
jobs:
bench:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run benchmarks
run: cargo bench --bench benchmarks -p presentar-core -- --output-format bencher | tee bench-output.txt
- name: Upload benchmark results
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: bench-output.txt