-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (55 loc) · 1.54 KB
/
Copy pathbuild.yml
File metadata and controls
70 lines (55 loc) · 1.54 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Build & Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install pyyaml markdown
- name: Validate chapter frontmatter
run: python scripts/validate_chapters.py
- name: Build Book.txt
run: python scripts/build_book.py
- name: Count words and pages
run: python scripts/word_count.py >> $GITHUB_STEP_SUMMARY
test-experiments:
runs-on: ubuntu-latest
needs: validate
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run experiments (mock mode)
run: |
cd experiments
for dir in exp-*/; do
if [ -f "$dir/main.py" ]; then
echo "Testing $dir..."
python "$dir/main.py" --mock || true
fi
done
deploy-pages:
runs-on: ubuntu-latest
needs: [validate, test-experiments]
if: github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Build HTML site
run: pip install markdown pyyaml && python _build_html.py
- uses: actions/upload-pages-artifact@v3
with:
path: _build/site/
- uses: actions/deploy-pages@v4