Skip to content

Commit 85c5ecb

Browse files
committed
Build a real-data Python learning pipeline with World Bank integration.
Expand the project into a testable curriculum package by adding World Bank ingestion, cache-aware capstone orchestration, API and CLI workflows, extensive tests, and a fully reorganized multi-section documentation system.
1 parent 0b59f9d commit 85c5ecb

140 files changed

Lines changed: 4645 additions & 1263 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Setup Python
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.11"
18+
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r requirements-dev.txt
23+
24+
- name: Run tests
25+
env:
26+
PYTHONPATH: src
27+
run: pytest -q
28+

0 commit comments

Comments
 (0)