no defaults for WITH_CUDA envvar. default is autodetection #460
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |