Skip to content

Merge pull request #204 from jyoung3131/documentation-updates #4

Merge pull request #204 from jyoung3131/documentation-updates

Merge pull request #204 from jyoung3131/documentation-updates #4

Workflow file for this run

name: Notebook Build
on:
push:
branches:
- 'main'
jobs:
notebook-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r notebooks/requirements.txt
#Run the notebook tests with PyTest
- name: Test Getting Started Notebook
run: |
cd notebooks && pytest --nbmake GettingStarted.ipynb