From 8bcd8653bacedf3dc3114a32820ec03ab96bc17f Mon Sep 17 00:00:00 2001 From: Dmitry Ustalov Date: Sat, 6 Jul 2024 15:39:34 +0200 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a77a500..2a081ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,13 @@ jobs: run: nbqa ruff *.ipynb - name: Lint Jupyter with Mypy run: nbqa mypy *.ipynb + - name: Run Jupyter + run: jupyter nbconvert --to html --output Tutorial.html --execute Tutorial.ipynb - name: Build with Maturin run: maturin build --release --out=dist/ - name: Check with Twine run: twine check --strict dist/* + - name: Upload Jupyter + uses: actions/upload-pages-artifact@v3 + with: + path: Tutorial.html