From 6d9555968b95c8246a76d73b370376ca5d1cfd7c Mon Sep 17 00:00:00 2001 From: willGraham01 <1willgraham@gmail.com> Date: Thu, 6 Jul 2023 16:03:25 +0100 Subject: [PATCH] Add MANIFEST check to CI --- .github/workflows/test_and_deploy.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 8ec68cfb..d6497728 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -12,9 +12,16 @@ jobs: linting: runs-on: ubuntu-latest steps: - - uses: neuroinformatics-unit/actions/lint@v1.2.0 + - uses: neuroinformatics-unit/actions/lint@v2 + + manifest: + name: Check Manifest + runs-on: ubuntu-latest + steps: + - uses: neuroinformatics-unit/actions/check_manifest@v2 test: + needs: [linting, manifest] runs-on: ${{ matrix.os }} strategy: matrix: @@ -42,6 +49,7 @@ jobs: # Run cellfinder tests to make sure cellfinder is still compatible # with cellfinder-core test_cellfinder: + needs: [linting, manifest] name: Run cellfinder tests runs-on: ubuntu-latest steps: