Skip to content

Update claude.md

Update claude.md #70

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
name: Run Pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run tests
run: |
uv run pytest