File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,19 @@ steps:
15
15
- uses : actions/checkout@master
16
16
- uses : actions/setup-python@v1
17
17
with :
18
- version : 3.x // Version range or exact version of a Python version to use, using semvers version range syntax.
19
- architecture : x64 // (x64 or x86)
18
+ version : ' 3.x' // Version range or exact version of a Python version to use, using semvers version range syntax.
19
+ architecture : ' x64' // (x64 or x86)
20
20
- run : python my_script.py
21
21
` ` `
22
22
23
23
Matrix Testing:
24
24
` ` ` yaml
25
25
jobs :
26
26
build :
27
+ runs-on : ubuntu-16.04
27
28
strategy :
28
29
matrix :
29
- python : [ 2.x, 3.x, pypy3 ]
30
+ python : [ ' 2.x', ' 3.x', ' pypy3' ]
30
31
name : Python ${{ matrix.python }} sample
31
32
steps :
32
33
- uses : actions/checkout@master
You can’t perform that action at this time.
0 commit comments