diff --git a/.github/workflows/tutorial_build.yml b/.github/workflows/tutorial_build.yml index 2608204d..1caf5e15 100644 --- a/.github/workflows/tutorial_build.yml +++ b/.github/workflows/tutorial_build.yml @@ -25,18 +25,15 @@ jobs: python-version: 3.8 poetry-version: 1.2.2 - # Generates and commits a requirements.txt used by readthedocs - # Missing is to run the notebooks for now! - - name: install nbconvert - run: poetry run pip install nbconvert - - - name: install sed - run: poetry install - - - name: run python script - run: poetry run python renaming.py - - - name: remove ipynbs + # + - name: run python script after setting up + run: | + poetry run pip install nbconvert + poetry install + poetry shell + poetry run python renaming.py + + - name: remove notebooks from docs run: rm *.ipynb - name: Commit changes