File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments