Skip to content

Commit

Permalink
Add check manifest to CI (#196)
Browse files Browse the repository at this point in the history
* Add check manifest to CI

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
willGraham01 and pre-commit-ci[bot] authored Feb 6, 2024
1 parent 4aaf078 commit 6525eb9
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
name: tests

on: [push, pull_request]
on:
push:
branches:
- "main"
tags:
- "v**"
pull_request:
workflow_dispatch:

jobs:
lint:
linting:
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/lint@v1

manifest:
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/check_manifest@v2

test:
needs: lint
needs: [linting, manifest]
name: ${{ matrix.os }} py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit 6525eb9

Please sign in to comment.