Skip to content

chore(deps): bump pydantic-settings from 2.12.0 to 2.14.2 #64

chore(deps): bump pydantic-settings from 2.12.0 to 2.14.2

chore(deps): bump pydantic-settings from 2.12.0 to 2.14.2 #64

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
run: pip install uv
- name: Create virtual environment
run: uv venv
- name: Install dependencies
run: uv pip install -e .[dev]
- name: Run Ruff checks
run: uv run ruff check .
- name: Run Pyright checks
run: uv run pyright
- name: Run tests
run: uv run python3 -m unittest discover