Skip to content

CI: Add sphinx/nbsphinx to doc dependencies #1

CI: Add sphinx/nbsphinx to doc dependencies

CI: Add sphinx/nbsphinx to doc dependencies #1

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
- name: Build docs
run: |
cd docs
sphinx-build -W docs/source docs/build