2026 Workshop Updates #9
Workflow file for this run
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: Test documentation and Mapfiles ⚙️ | |
| on: | |
| pull_request: | |
| paths: | |
| - 'workshop/content/**' | |
| - 'workshop/exercises/mapfiles/**' | |
| defaults: | |
| run: | |
| working-directory: workshop | |
| jobs: | |
| build: | |
| name: Test documentation build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Install requirements 📦 | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install mappyfile | |
| - name: Test Mapfiles | |
| run: | | |
| mappyfile validate exercises/mapfiles/**/*.map | |
| - name: Deploy 📦 | |
| run: zensical build --clean --strict |