Skip to content

try sphinx doc edit #11

try sphinx doc edit

try sphinx doc edit #11

Workflow file for this run

name: "Sphinx: Render docs"
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install Sphinx & Dependencies
run: pip install sphinx sphinx_markdown_builder sphinx_rtd_theme
- name: Build Documentation
run: cd "$GITHUB_WORKSPACE/doc" && make html
- uses: actions/upload-artifact@v3
with:
name: Documentation
path: "$GITHUB_WORKSPACE/doc/_build/html/"