Skip to content

Commit 633a440

Browse files
author
Danny McCormick
authored
Quoting
1 parent 5dc6824 commit 633a440

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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
2323
Matrix Testing:
2424
```yaml
2525
jobs:
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

0 commit comments

Comments
 (0)