Skip to content

Add Python 3.15 wheel and test coverage (#72) #110

Add Python 3.15 wheel and test coverage (#72)

Add Python 3.15 wheel and test coverage (#72) #110

Workflow file for this run

name: Benchmark
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
benchmark:
runs-on: ubuntu-latest
env:
UV_PYTHON: "3.14"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.UV_PYTHON }}
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run the benchmarks
uses: CodSpeedHQ/action@v4
with:
mode: instrumentation
run: uv run pytest tests/ --codspeed
token: ${{ secrets.CODSPEED_TOKEN }}