Skip to content

Commit

Permalink
Add check on CI to compare more files
Browse files Browse the repository at this point in the history
Fixes #120
  • Loading branch information
fcollonval committed Feb 14, 2021
1 parent dc7e7c1 commit e95b9fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,12 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- name: Install the Python dependencies
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
- name: Check compliance with template
run: |
python scripts/upgrade_extensions.py
- run: if [[ $(git status --porcelain=v1 2>/dev/null | wc -l) > 0 ]]; then exit 1; fi
shell: bash
- name: Bootstrap the jlpm deps
run: jlpm
- name: Build all the extensions
Expand Down

0 comments on commit e95b9fa

Please sign in to comment.