Skip to content

Commit 0f385d1

Browse files
authored
Merge pull request #1 from EugeneSim/feat/world-bank-realdata-docs
Build World Bank real-data curriculum pipeline and docs
2 parents 0b59f9d + 471a66f commit 0f385d1

87 files changed

Lines changed: 4649 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+

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
__pycache__/
2+
*.py[cod]
3+
.pytest_cache/
4+
.venv/

0 commit comments

Comments
 (0)