Updates AWS managed policies #284
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "docs/**" | |
| - ".github/workflows/test-docs.yml" | |
| jobs: | |
| test-docs: | |
| name: Build Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Build documentation | |
| run: | | |
| cd docs | |
| make install html | |
| - name: Check for build errors | |
| run: | | |
| if [ -f docs/build/html/index.html ]; then | |
| echo "Documentation built successfully" | |
| else | |
| echo "Documentation build failed - index.html not found" | |
| exit 1 | |
| fi |