Skip to content

add separate workflow to run notebooks #1

add separate workflow to run notebooks

add separate workflow to run notebooks #1

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: CI tests
on:
push:
branches:
- main # only rerun tutorials when making PRs or changing main
- v3
pull_request:
branches:
- '*'
jobs:
build:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tutorial notebooks
run: |
jupyter execute "{}/../docs/tutorials/*.ipynb".format(tests_dir)