From e95b9fab61c31ae4cf668024b7e6ff469d1ede32 Mon Sep 17 00:00:00 2001 From: Frederic COLLONVAL Date: Thu, 11 Feb 2021 19:52:16 +0100 Subject: [PATCH] Add check on CI to compare more files Fixes #120 --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b64e7ed5..7e24687e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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