Skip to content

Updated-Readme

Updated-Readme #6

name: Notebook Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
execute-notebooks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Execute all notebooks
run: python scripts/run_all_notebooks.py