Skip to content

Bug Fixing Patch 1.5.1 #242

Bug Fixing Patch 1.5.1

Bug Fixing Patch 1.5.1 #242

Workflow file for this run

name: Build & Publish Docs
on:
push:
branches:
- main
- documentation # just for testing
pull_request:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10.13" ]
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install sphinx sphinx_rtd_theme sphinx-autoapi sphinx-theme sphinxcontrib-plantuml plantuml-local-client myst-parser
- name: Build docs
run: |
sphinx-build -M html docs/ docs/_build/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: 'docs/_build/html'