Skip to content

Commit b13349b

Browse files
committed
CI: validate deploy manifest for missing files
1 parent a6d24a7 commit b13349b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/ci_tests_run_notebooks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ jobs:
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949

50+
- name: Validating manifest
51+
run: bash -c 'missing=false; for file in $(cat deploy_to_fornax_manifest.in); do if [ ! -f $file ]; then echo "Inconsistent" $file; missing=true; fi; done; if $missing; then exit 1; fi'
52+
5053
- name: Install dependencies
5154
run: python -m pip install --upgrade tox
5255

0 commit comments

Comments
 (0)