Skip to content

CI: Leave the doc requirements where they are #6

CI: Leave the doc requirements where they are

CI: Leave the doc requirements where they are #6

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 -r requirements-docs.txt
- name: Build docs
run: |
cd docs
sphinx-build -Wb html source build