Skip to content

Commit e95b9fa

Browse files
committed
Add check on CI to compare more files
Fixes #120
1 parent dc7e7c1 commit e95b9fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,12 @@ jobs:
261261
restore-keys: |
262262
${{ runner.os }}-pip-
263263
- name: Install the Python dependencies
264-
run: python -m pip install jupyterlab~=3.0 pytest pytest-check-links
264+
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
265270
- name: Bootstrap the jlpm deps
266271
run: jlpm
267272
- name: Build all the extensions

0 commit comments

Comments
 (0)