Skip to content

ref(providers): Route requests through a central template registry #417

ref(providers): Route requests through a central template registry

ref(providers): Route requests through a central template registry #417

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
jobs:
validate:
name: Run the linter, type checker, and tests
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python: [3.13]
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install uv
uv sync --frozen
- name: Run tests
run: |
uv run ruff check .
uv run mypy .
uv run pytest