Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ jobs:
with:
fetch-depth: 0

- name: Setup Poetry
run: pipx install poetry==2.0.0
shell: bash

- name: Install Poetry Packages
run: poetry install --no-root
shell: bash

- name: Execute Notebooks
run: |
poetry run jupyter nbconvert --inplace --to notebook --execute --allow-errors static/**/*.ipynb
shell: bash

- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand Down