Skip to content

Commit

Permalink
Ensure example run on more platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jun 22, 2023
1 parent d66eb51 commit 225c91e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ jobs:
pytest -vs
- name: Run examples
if: ${{ matrix.python-version != '3.7' && matrix.runs-on == 'macos-latest' }} # issue with _bz2 module...
if: ${{ matrix.python-version != '3.7' || matrix.runs-on != 'macos-latest' }} # issue with _bz2 module...
run: |
cd ./neuroml/examples && python run_all.py
cd neuroml/examples
python run_all.py
- name: Final version info
run: |
Expand Down

0 comments on commit 225c91e

Please sign in to comment.