Skip to content

feat: reduce json output size #3

feat: reduce json output size

feat: reduce json output size #3

Workflow file for this run

name: Benchmark Page
on:
push:
branches:
- main
jobs:
benchmark:
name: Build Benchmark Page
runs-on: macos-latest
permissions:
pages: write
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run benchmark
run: cargo bench
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "target/criterion"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4