change viewer default bkgcolor + tune newsimproject #15
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-docs | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -el {0} | |
env: | |
CONDA_SOLVER: libmamba | |
steps: | |
- name: Checkout main repository | |
uses: actions/checkout@v3 | |
- name: Setup conda environment | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: publish-doc-condaenv | |
environment-file: .github/resources/publish-doc-condaenv.yml | |
#use-mamba: no | |
- name: Install self | |
run: python3 -mpip install . | |
- name: Build documentation | |
#NB: -W to turn warnings into errors: | |
run: make html SPHINXOPTS="-W" | |
working-directory: ./doc/ |