Skip to content

Time updated for linux #38

Time updated for linux

Time updated for linux #38

Workflow file for this run

name: Pip install EDEN
on:
push:
branches: [ main, development ]
pull_request:
branches: [ main, development ]
jobs:
build:
name: Test Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]
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 EDEN using pip
run: |
pip install eden-simulator
- name: Run EDEN example directly
run: |
cd NeuroML2
python run_eden.py
- name: Final version info
run: |
pip list