We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20fa8e commit 030a54eCopy full SHA for 030a54e
2 files changed
.github/workflows/unit_test.yaml
@@ -29,3 +29,5 @@ jobs:
29
run: make test
30
- name: Type-check with mypy
31
run: make typecheck
32
+ - name: Run Jupyter notebooks
33
+ run: make run-notebooks
Makefile
@@ -26,8 +26,12 @@ install.doc: check.lock
26
27
.PHONY: notebooks
28
notebooks: install
- @$(POETRY) run jupyter lab notebooks/
+ @$(POETRY) run jupyter lab ./notebooks/
.PHONY: typecheck
typecheck: install
- @$(POETRY) run mypy --strict
+ @$(POETRY) run mypy --strict
34
+
35
+.PHONY: run-notebooks
36
+run-notebooks: install
37
+ @$(POETRY) run jupyter-execute ./notebooks/*.ipynb
0 commit comments