Update IMAGEPATH #17
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: Test Mapfiles | |
| run: | | |
| pip install mappyfile | |
| mappyfile validate exercises/mapfiles/*.map | |
| - name: Install doc requirements 📦 | |
| run: | | |
| cd content | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Deploy 📦 | |
| run: | | |
| cd content | |
| zensical build --clean --strict |