File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
test :
13
- runs-on : ubuntu-20.04
13
+ runs-on : ${{ matrix.runs_on || ' ubuntu-20.04' }}
14
14
timeout-minutes : 10
15
15
16
16
strategy :
@@ -22,12 +22,14 @@ jobs:
22
22
ssh : ssh
23
23
- python : " 3.6"
24
24
tornado : " 5.1.1"
25
- - python : " 3.6"
26
25
- python : " 3.7"
27
26
controller_ip : " *"
27
+ - python : " 3.8"
28
+ runs_on : windows-2019
28
29
- python : " 3.8"
29
30
mpi : mpi
30
31
- python : " 3.9"
32
+ runs_on : macos-10.15
31
33
32
34
steps :
33
35
- uses : actions/checkout@v2
74
76
pip install --upgrade pip
75
77
pip install --pre --upgrade .[test] distributed joblib codecov
76
78
pip install --only-binary :all: matplotlib || echo "no matplotlib"
77
- if [ "${{ matrix.tornado }}" != "" ]; then
78
- pip install tornado==${{ matrix.tornado }}
79
- fi
79
+
80
+ - name : Install pinned tornado
81
+ if : matrix.tornado
82
+ run : |
83
+ pip install tornado==${{ matrix.tornado }}
80
84
81
85
- name : Show environment
82
86
run : pip freeze
You can’t perform that action at this time.
0 commit comments