Skip to content

Update setup.py (#360) #462

Update setup.py (#360)

Update setup.py (#360) #462

Workflow file for this run

name: Build Documentation
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.10"
channels: conda-forge
conda-remove-defaults: "true"
- name: Install compiler
run: conda install gxx --channel conda-forge --override-channels
- name: Install docs dependencies
run: |
pip install -vv .
pip install -r docs/requirements.txt
shell: bash -el {0}
- name: Build Sphinx Documentation
run: |
cd docs
make html
shell: bash -el {0}