Skip to content

Test docs build - 101/merge by dependabot[bot] #57

Test docs build - 101/merge by dependabot[bot]

Test docs build - 101/merge by dependabot[bot] #57

name: Test Documentation Build
run-name: Test docs build - ${{ github.ref_name }} by ${{ github.actor }}
on:
pull_request:
paths:
- 'docs/**'
- 'are/simulation/**'
- '.github/workflows/test-deploy-site.yaml'
push:
branches:
- main
paths:
- 'docs/**'
- 'are/simulation/**'
- '.github/workflows/test-deploy-site.yaml'
permissions:
contents: read
jobs:
test-docs-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Setup uv
id: setup-uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
- name: Check for build warnings
run: |
cd docs
make html-strict
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: documentation-html
path: docs/_build/
retention-days: 7