Skip to content

Verify CEPALSTAT, IADB Latin Macro Watch, and World Bank/IADB DPI live #191

Verify CEPALSTAT, IADB Latin Macro Watch, and World Bank/IADB DPI live

Verify CEPALSTAT, IADB Latin Macro Watch, and World Bank/IADB DPI live #191

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Matches pyproject.toml's requires-python (>=3.11); also covers the
# 3.13 the Dockerfile actually ships.
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: uv sync --group dev --locked
- name: Lint
run: uv run ruff check .
- name: Test
run: uv run pytest -q