Skip to content

Commit d15d626

Browse files
committed
Don't validate _W2D*.nml
1 parent 1676f53 commit d15d626

File tree

3 files changed

+71
-67
lines changed

3 files changed

+71
-67
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,24 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
15-
python-version: [ 3.8, 3.9 ]
16+
python-version: [ 3.9, "3.11" ]
1617
engine: [ jNeuroML, jNeuroML_NEURON, jNeuroML_validate ] #, NON_OMV_TESTS ]
1718

1819
steps:
1920
- uses: actions/checkout@v4
21+
2022
- name: Set up Python ${{ matrix.python-version }}
2123
uses: actions/setup-python@v5
2224
with:
2325
python-version: ${{ matrix.python-version }}
26+
2427
- name: Install OMV
2528
run: |
2629
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
2730
pip install scipy sympy matplotlib cython pandas tables
31+
2832
- name: Run OMV tests on engine ${{ matrix.engine }}
2933
run: |
3034
omv all -V --engine=${{ matrix.engine }}; export OMV_SUCCESS=$?; echo $OMV_SUCCESS

0 commit comments

Comments
 (0)