-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 1.15 KB
/
ci.yml
File metadata and controls
28 lines (26 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- run: uv python install 3.13
- run: uv sync --locked --all-extras --dev
- run: uv run ruff check src tests
- run: uv run mypy src
- run: uv run pytest --cov=src/reformlab --cov-report=term-missing tests/
- run: uv run python demos/guides/01_data_foundation.py
- run: uv run python demos/guides/02_scenario_templates.py
- run: uv run python demos/guides/03_multiyear_orchestration.py
- run: uv run python demos/guides/04_indicators_comparison.py
- run: uv run python demos/guides/05_governance_reproducibility.py
- run: uv run python demos/guides/06_portfolio_comparison.py
- run: uv run python demos/guides/07_custom_templates.py
- run: uv run python demos/guides/08_discrete_choice_model.py
- run: uv run python demos/guides/09_population_generation.py
- run: uv run python demos/guides/10_calibration_workflow.py
- run: uv run python demos/guides/11_replication_workflow.py