Merge pull request #2 from OpenSourceBrain/master #24
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
name: Continuous builds | |
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.7, 3.9, "3.10" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
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 | |
- name: Run OMV tests on all engines | |
run: | | |
omv all -V | |
- name: OMV final version info | |
run: | | |
omv list -V # list installed engines | |
- name: Install TVB | |
run: | | |
pip install tvb-library | |
pip install tvb-data | |
pip install pyneuroml | |
- name: Test TVB native examples | |
run: | | |
cd TVB | |
python RWW.py -nogui | |
python KuramotoRun.py -nogui | |
python G2OS.py -nogui | |
python JR.py -nogui | |
python Connectivities.py -nogui | |
python RestingNetwork.py -nogui | |
python TVBReader.py -nogui | |
- name: Test LEMS generated TVB examples | |
run: | | |
cd TVB_LEMS | |
python genlems.py | |
./test_all.sh | |
- name: Final version info | |
run: | | |
pip list |