Skip to content

RELEASE: Bump - Hotfix #72

RELEASE: Bump - Hotfix

RELEASE: Bump - Hotfix #72

Workflow file for this run

name: PyTest
on:
pull_request:
push:
branches: [main]
jobs:
pytest:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests