Update tools.py #1
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: Test documentation build | |
on: | |
pull_request: | |
paths: | |
- '**.py' | |
- '**.ipynb' | |
- '**.rst' | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Micromamba ${{ matrix.python-version }} | |
uses: mamba-org/[email protected] | |
with: | |
environment-name: TEST | |
init-shell: bash | |
create-args: >- | |
python=3 pip | |
--file requirements-dev.txt | |
--channel conda-forge | |
- name: Install glidertest | |
shell: bash -l {0} | |
run: | | |
python -m pip install -e . --no-deps --force-reinstall | |
- name: Build documentation | |
shell: bash -l {0} | |
run: | | |
set -e | |
jupyter nbconvert --to notebook --execute notebooks/demo.ipynb --output=demo-output.ipynb | |
mv notebooks/*output.ipynb docs/source/ | |
pushd docs | |
make clean html | |
popd |