Skip to content

Commit d80a55a

Browse files
authored
Create omv-ci.yml
1 parent 79a2354 commit d80a55a

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/omv-ci.yml

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

0 commit comments

Comments
 (0)