-
Notifications
You must be signed in to change notification settings - Fork 370
48 lines (41 loc) · 1.06 KB
/
run_tests.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
name: Linux Conda test
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
jobs:
build-linux-conda:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ['3.9', '3.10', '3.11']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment-minimal.yml
activate-environment: caiman
conda-solver: libmamba
- name: Install OS Dependencies
shell: bash -l {0}
run: |
sudo apt-get install libglapi-mesa libegl-mesa0 libegl1 libopengl0 libgl1-mesa-glx
- name: Install Dependencies
shell: bash -l {0}
run: |
conda install pip
pip install -e .
caimanmanager install --inplace
- name: Test
shell: bash -l {0}
run: |
caimanmanager test