Verify CEPALSTAT, IADB Latin Macro Watch, and World Bank/IADB DPI live #191
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |