-
Notifications
You must be signed in to change notification settings - Fork 10
36 lines (33 loc) · 940 Bytes
/
main.yaml
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
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
incubator:
name: build (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.9"]
steps:
- name: Checkout branch
uses: actions/checkout@v3
- uses: conda-incubator/[email protected]
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install all packages
shell: bash -l {0}
run: |
conda activate test
cd ..
git clone https://github.com/int-brain-lab/iblapps.git
pip install --editable iblapps
cd iblenv
pip install --requirement requirements.txt
echo "----- pip list -----"
pip list