Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dustalov committed Jul 6, 2024
1 parent f1ffbe2 commit eeb0005
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,16 @@ jobs:
- name: Lint Jupyter with Ruff
run: nbqa ruff *.ipynb
- name: Run Jupyter
run: |
mkdir jupyter
jupyter nbconvert --to html --output jupyter/Tutorial.html --execute Tutorial.ipynb
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
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: ./jupyter
name: jupyter
path: |
*.html
if-no-files-found: error
retention-days: 5

0 comments on commit eeb0005

Please sign in to comment.