Skip to content

Add badges

Add badges #9

Workflow file for this run

name: pytest
on: pull_request
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh
- name: Set up Python
run: uv python install 3.9
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests