Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c0bf94d

Browse files
committedFeb 11, 2021
Add check on CI to compare more files
Fixes #120
1 parent de1ef15 commit c0bf94d

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)
Please sign in to comment.