We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de1ef15 commit c0bf94dCopy full SHA for c0bf94d
.github/workflows/main.yml
@@ -261,7 +261,12 @@ jobs:
261
restore-keys: |
262
${{ runner.os }}-pip-
263
- name: Install the Python dependencies
264
- run: python -m pip install jupyterlab~=3.0 pytest pytest-check-links
+ run: python -m pip install cookiecutter jupyterlab~=3.0 pytest pytest-check-links
265
+ - name: Check compliance with template
266
+ run: |
267
+ python scripts/upgrade_extensions.py
268
+ - run: if [[ $(git status --porcelain=v1 2>/dev/null | wc -l) > 0 ]]; then exit 1; fi
269
+ shell: bash
270
- name: Bootstrap the jlpm deps
271
run: jlpm
272
- name: Build all the extensions
0 commit comments