Skip to content

Updates AWS managed policies #284

Updates AWS managed policies

Updates AWS managed policies #284

Workflow file for this run

---
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