Skip to content

Is ubuntu-22.04 required for eden?? #53

Is ubuntu-22.04 required for eden??

Is ubuntu-22.04 required for eden?? #53

Workflow file for this run

name: Continuous builds
on:
push:
branches: [ main, development, experimental ]
pull_request:
branches: [ main, development, experimental ]
jobs:
build:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on: [ ubuntu-latest, ubuntu-22.04, macos-14 ]
engine:
- jNeuroML
- jNeuroML_NEURON
- jNeuroML_EDEN
- "jNeuroML_EDEN:0.2.3"
- jNeuroML_validate
- "EDEN:0.2.0"
- "EDEN:0.2.2"
- "EDEN:0.2.3"
python-version: [ "3.10" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install OMV
run: |
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
- name: Run OMV tests on engine ${{ matrix.engine }}
run: |
omv all -V --engine=${{ matrix.engine }}
- name: Print final OMV/engine version info
run: |
omv list -V # list installed engines
pip list
env