File tree 1 file changed +0
-26
lines changed
1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 9
9
branches : [ master ]
10
10
11
11
jobs :
12
-
13
- # Checks compatibility with an old version of sklearn (0.21.3)
14
- compatibility :
15
- runs-on : ${{ matrix.os }}
16
- strategy :
17
- matrix :
18
- os : [ubuntu-latest]
19
- python-version : ['3.6', '3.7']
20
- steps :
21
- - uses : actions/checkout@v2
22
- - name : Set up Python
23
- uses : actions/setup-python@v2
24
- with :
25
- python-version : ${{ matrix.python-version }}
26
- - name : Run Tests with skggm + scikit-learn 0.21.3
27
- env :
28
- SKGGM_VERSION : a0ed406586c4364ea3297a658f415e13b5cbdaf8
29
- run : |
30
- sudo apt-get install liblapack-dev
31
- pip install --upgrade pip pytest
32
- pip install wheel cython numpy scipy codecov pytest-cov
33
- pip install scikit-learn==0.21.3
34
- pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION}
35
- pytest test --cov
36
- bash <(curl -s https://codecov.io/bash)
37
-
38
12
# Run normal testing with the latest versions of all dependencies
39
13
build :
40
14
runs-on : ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments