Merge pull request #230 from VirtualFlyBrain/Robbie1977-patch-5 #1125
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: Jupyter Notebook checks | |
on: [push, release] | |
jobs: | |
notebooks: | |
name: "Build the notebooks for the docs" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.14 | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
python -m pip install . | |
python -m pip install -r .github/workflows/requirements.txt | |
- name: Execute the tutorial notebooks | |
run: | | |
jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=None docs/source/tutorials/*.ipynb | |
- name: Execute the snippet notebooks | |
run: | | |
jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=None snippets/*.ipynb | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: notebooks-for-${{ github.sha }} | |
path: docs/tutorials | |