-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (46 loc) · 1.64 KB
/
build.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
on:
push:
branches:
- master
pull_request:
branches:
- master
name: build
jobs:
py-check:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.py }})
strategy:
fail-fast: false
matrix:
config:
- { os: windows-latest, py: "3.9" }
- { os: windows-latest, py: "3.8" }
- { os: macOS-latest, py: "3.9" }
- { os: macOS-latest, py: "3.8" }
- { os: ubuntu-latest, py: "3.8" }
- { os: ubuntu-latest, py: "3.9" }
env:
SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk
steps:
- name: CHECKOUT CODE
uses: actions/checkout@v2
- name: SETUP PYTHON
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.config.py }}
- name: SETUP CONDA
uses: s-weigand/setup-conda@v1
- name: Install dependencies
run: |
pip install --user --no-cache-dir Cython
python -m pip install --upgrade pip
pip install grip
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install --file requirements.txt
conda install --file requirements_dev.txt
conda install -c conda-forge ipywidgets
- name: PKG-TEST
run: |
python -m unittest discover