Skip to content

Commit

Permalink
Create non-omv.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson authored Nov 21, 2023
1 parent 945bf21 commit 4965405
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/non-omv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Non OMV tests

on:
push:
branches: [ master, development, experimental ]
pull_request:
branches: [ master, development, experimental ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ 3.9 ]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pip install pyNeuroML
- name: Run some examples
run: |
echo "Running non OMV tests..."
# Test channel analysis
cd NeuroML2
./analyse_all.sh

0 comments on commit 4965405

Please sign in to comment.