-
Notifications
You must be signed in to change notification settings - Fork 75
74 lines (61 loc) · 1.83 KB
/
github_actions_ci.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Python CI
on:
push:
branches:
- master
pull_request:
jobs:
python_unittests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
exclude:
- os: macos-latest
python-version: 3.7
- os: macos-latest
python-version: 3.8
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Test Windows
if: matrix.os == 'windows-latest'
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -r requirements.txt
python -m pytest brainspace --ignore brainspace/tests/test_plotting.py
- name: Prepare Linux
if: matrix.os == 'ubuntu-latest'
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest
python3 -m pip install -r requirements.txt
- name: Test Linux
if: matrix.os == 'ubuntu-latest'
uses: GabrielBB/[email protected]
with:
options: -screen 0 1600x1200x24
run: python3 -m pytest brainspace
- name: Test macOS
if: matrix.os == 'macos-latest'
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest
python3 -m pip install -r requirements.txt
python3 -m pytest brainspace
matlab_unittests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v0
- name: Run tests
uses: matlab-actions/run-tests@v0
with:
source-folder: matlab