Skip to content

Merge pull request #39 from gw-odw/Tutorial_3_1_parenthesis_fix #88

Merge pull request #39 from gw-odw/Tutorial_3_1_parenthesis_fix

Merge pull request #39 from gw-odw/Tutorial_3_1_parenthesis_fix #88

Workflow file for this run

name: Version check
on:
push:
branches: "*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U jupyter
- name: Clean all notebooks
run: |
for file in Tutorials/Day_*/*ipynb; do echo $file; jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace $file; done
- name: Check versions
run: |
python tests/check_versions.py