Skip to content

BREAKING CHANGE: migrate to pydantic #43

BREAKING CHANGE: migrate to pydantic

BREAKING CHANGE: migrate to pydantic #43

Workflow file for this run

permissions:
contents: read
name: pytest
on:
push:
branches:
- main
pull_request:
branches:
- develop
jobs:
pytest:
name: Run tests with pytest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v6
with:
version: ">=0.7.21,<0.8"
- name: Set up Python ${{ matrix.python-version }}
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: uv venv --python $PYTHON_VERSION
- name: Install Dependencies
run: uv sync --dev --locked
- name: Run Tests
run: uv run pytest