Skip to content

Commit 0ad1e1a

Browse files
authored
Create omv-ci.yml
1 parent c33f6cd commit 0ad1e1a

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/workflows/omv-ci.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
name: Continuous build using OMV
3+
4+
on:
5+
push:
6+
branches: [ master, development, experimental ]
7+
pull_request:
8+
branches: [ master, development, experimental ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
python-version: [ 3.7, 3.9 ]
18+
engine: [ jNeuroML_NEURON, jNeuroML_NetPyNE, jNeuroML_validate ]
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v2
25+
with:
26+
python-version: ${{ matrix.python-version }}
27+
28+
- name: Install OMV
29+
run: |
30+
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
31+
pip install scipy sympy matplotlib cython pandas tables
32+
33+
- name: Run OMV tests on engine ${{ matrix.engine }}
34+
run: |
35+
omv all -V --engine=${{ matrix.engine }}
36+
37+
- name: OMV final version info
38+
run: |
39+
omv list -V # list installed engines
40+
env

0 commit comments

Comments
 (0)