-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
|
||
name: Continuous build using OMV | ||
|
||
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 ] | ||
engine: [ jNeuroML, jNeuroML_NEURON, jNeuroML_validate ] | ||
|
||
|
||
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 OMV | ||
run: | | ||
pip install git+https://github.com/OpenSourceBrain/osb-model-validation | ||
pip install scipy sympy matplotlib cython pandas tables | ||
pip install 'numpy<=1.23.0' # see https://github.com/OpenSourceBrain/osb-model-validation/issues/91 | ||
- name: Run OMV tests on engine ${{ matrix.engine }} | ||
run: | | ||
omv all -V --engine=${{ matrix.engine }} | ||
- name: OMV final version info | ||
run: | | ||
omv list -V # list installed engines | ||
env |