Skip to content

Automatic update

Automatic update #5646

Workflow file for this run

name: Notebook tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Lint notebooks
run: jupyter nbconvert ./**/*.ipynb --to=html --stdout > /dev/null
- name: Run notebooks
run: python run.py notebooks/examples.ipynb