docs(research): add r-note-014-self-modification-attack-surface.md #64
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: 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 |