Skip to content

Implemented DPMON, cleaned up old files, updated documentation. #5

Implemented DPMON, cleaned up old files, updated documentation.

Implemented DPMON, cleaned up old files, updated documentation. #5

Workflow file for this run

name: Build Documentation for Read the Docs
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Documentation Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install sphinx sphinx_rtd_theme
- name: Build Documentation
run: |
sphinx-build -b html source/ build/html/
- name: Validate Documentation Build
run: |
echo "Documentation build completed successfully. Files are located in build/html/"
ls -R build/html/