Skip to content

Update README.md with deepwiki badge #70

Update README.md with deepwiki badge

Update README.md with deepwiki badge #70

Workflow file for this run

name: pytest
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
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-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --frozen
- name: Run pytest
run: uv run pytest