Skip to content

remove own summary formatter #6

remove own summary formatter

remove own summary formatter #6

Workflow file for this run

name: Benchmark
on: [ pull_request, push, workflow_dispatch ]
permissions:
contents: write
env:
UV_FROZEN: true
UV_PYTHON: 3.14
RUST_VERSION: "1.90.0"
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Checkout repository.
uses: actions/checkout@v4
- name: Install UV.
uses: astral-sh/setup-uv@v6
- name: Install dependencies.
run: uv sync --group testing
- name: Compile.
run: uv pip install -v -e .
env:
RUST_BACKTRACE: 1
- name: Run Benchmarks.
run: uv run pytest . -m benchmark_main --benchmark-enable --benchmark-json=output.json
- name: Upload benchmark artifact
uses: actions/upload-artifact@v4
with:
name: benchmark-output
path: output.json
- name: Benchmark results
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'pytest'
output-file-path: output.json
external-data-json-path: POOP.json
# to make a commit comment
github-token: ${{ secrets.GITHUB_TOKEN }}
summary-always: true
skip-fetch-gh-pages: true