File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,20 @@ jobs:
17
17
test :
18
18
name : ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ matrix.reactor.name }}
19
19
runs-on : ${{ matrix.os.runs-on }}
20
- container : ${{ format( matrix.os.container, matrix.python.docker) }}
20
+ container : ${{ matrix.os.container[ matrix.python.docker] }}
21
21
strategy :
22
22
fail-fast : false
23
23
matrix :
24
24
os :
25
25
- name : Linux
26
26
runs-on : ubuntu-latest
27
27
python_platform : linux
28
- container : docker://python:{0}-buster
28
+ container :
29
+ 2.7 : docker://python:2.7-buster
30
+ 3.5 : docker://python:3.5-buster
31
+ 3.6 : docker://python:3.6-buster
32
+ 3.7 : docker://python:3.7-buster
33
+ 3.8 : docker://python:3.8-buster
29
34
- name : Windows
30
35
runs-on : windows-latest
31
36
python_platform : win32
You can’t perform that action at this time.
0 commit comments