Skip to content

DOC: Remove html static path #3

DOC: Remove html static path

DOC: Remove html static path #3

Workflow file for this run

name: Docbuild
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Set up Python"
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install doc dependencies
run: |
sudo apt-get update -y
sudo apt-get install pandoc
pip install -r examples/requirements.txt
pip install sphinx nbsphinx sphinx_rtd_theme
- name: Build docs
run: |
cd docs
sphinx-build -Wb html source build