Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Add MANIFEST check to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
willGraham01 committed Jul 6, 2023
1 parent 6c62be9 commit 6d95559
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@ jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/[email protected]
- 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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 6d95559

Please sign in to comment.