File tree Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Expand file tree Collapse file tree 1 file changed +0
-26
lines changed Original file line number Diff line number Diff line change 99 branches : [ master ]
1010
1111jobs :
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-
3812 # Run normal testing with the latest versions of all dependencies
3913 build :
4014 runs-on : ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments