Skip to content

Update non_omv.yml

Update non_omv.yml #23

Workflow file for this run

name: Non OMV tests
on:
push:
branches: [ master, development, test* ]
pull_request:
branches: [ master, development, test* ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ 3.7, 3.9 ]
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
- name: Install some simulators
run: |
omv install pyNeuroML
omv install Brian2
- name: Test regeneration
run: |
./regenerate.sh
- name: OMV final version info
run: |
omv list -V # list installed engines
env