Skip to content

fix: rekey raw note on move within raw/ instead of false-duplicate sk… #126

fix: rekey raw note on move within raw/ instead of false-duplicate sk…

fix: rekey raw note on move within raw/ instead of false-duplicate sk… #126

Workflow file for this run

name: Benchmarks
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
benchmark:
name: Offline micro-benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --group dev
- name: Run benchmarks
run: |
uv run pytest tests/test_benchmarks.py \
--benchmark-only \
--benchmark-json=benchmark-results.json \
-v
- name: Upload benchmark results
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: benchmark-results.json
retention-days: 90