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:
1515- uses : actions/checkout@master
1616- uses : actions/setup-python@v1
1717 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)
2020- run : python my_script.py
2121` ` `
2222
2323Matrix Testing:
2424` ` ` yaml
2525jobs :
2626 build :
27+ runs-on : ubuntu-16.04
2728 strategy :
2829 matrix :
29- python : [ 2.x, 3.x, pypy3 ]
30+ python : [ ' 2.x', ' 3.x', ' pypy3' ]
3031 name : Python ${{ matrix.python }} sample
3132 steps :
3233 - uses : actions/checkout@master
You can’t perform that action at this time.
0 commit comments