-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (47 loc) · 1.45 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Build and test Patch
on: [push]
jobs:
build:
name: build py${{ matrix.py }}, NEURON ${{ matrix.nrn }}
runs-on: ubuntu-latest
strategy:
matrix:
py: ["3.9","3.10"]
nrn: ["8.1.0", "8.2.2"]
include:
- nrn: "8.0.0"
py: "3.9"
- nrn: "8.2.2"
py: "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.py }}
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get install openmpi-bin libopenmpi-dev
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies & self
run: |
python -m pip install --upgrade pip
pip install -e . --no-deps
pip install -r requirements.txt --prefer-binary
pip install -e .
pip install NEURON==${{ matrix.nrn }}
- name: Run tests & coverage
run: |
cd tests
coverage run --parallel-mode -m unittest discover -v -s ./separate
coverage run --parallel-mode -m unittest discover -v -s .
mpiexec -n 2 coverage run --parallel-mode -m unittest discover -v -s .
bash <(curl -s https://codecov.io/bash)