Skip to content

Update pydantic-evals requirement from <2.0,>=1.70 to >=1.70,<3.0 #14

Update pydantic-evals requirement from <2.0,>=1.70 to >=1.70,<3.0

Update pydantic-evals requirement from <2.0,>=1.70 to >=1.70,<3.0 #14

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
name: test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --extra dev
- name: Repository governance
run: uv run python tools/quality/check_required_meta.py
- name: LOC limits
run: uv run python tools/quality/check_loc_limits.py
- name: Ruff lint
run: uv run ruff check .
- name: Ruff format check
run: uv run ruff format --check .
- name: Type check
run: uv run mypy src tests
- name: Test
run: uv run pytest -q