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 991e83d commit cfe9dd6Copy full SHA for cfe9dd6
.github/workflows/notebooks.yml
@@ -43,6 +43,9 @@ jobs:
43
- name: Lint with precommit
44
run: |
45
pip install pre-commit
46
+ find content/ -name "*.md" -exec jupytext --to notebook {} \;
47
+ # pre-commit wants files to be staged
48
+ find content/ -name "*.ipynb" -exec git add {} \;
49
pre-commit run --all-files --show-diff-on-failure --color always
50
51
- name: Test with nbval
0 commit comments