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