-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed92851
commit 88bd992
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,19 @@ jobs: | |
- name: pre-commit | ||
run: pixi run pre-commit-run --color=always --show-diff-on-failure | ||
|
||
mypy-example-nbs: | ||
name: Check notebooks mypy | ||
timeout-minutes: 5 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up pixi | ||
uses: prefix-dev/[email protected] | ||
- name: Run mypy | ||
run: | | ||
jupyter nbconvert --to script docs/examples/*.ipynb | ||
for file in docs/examples/*.txt; do mv -- "$file" "${file%.txt}.py"; done | ||
mypy docs/examples/*.py | ||
unit-tests: | ||
name: Unit Tests | ||
timeout-minutes: 30 | ||
|