8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc6824 commit 633a440Copy full SHA for 633a440
README.md
@@ -15,18 +15,19 @@ steps:
15
- uses: actions/checkout@master
16
- uses: actions/setup-python@v1
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)
+ version: '3.x' // Version range or exact version of a Python version to use, using semvers version range syntax.
+ architecture: 'x64' // (x64 or x86)
20
- run: python my_script.py
21
```
22
23
Matrix Testing:
24
```yaml
25
jobs:
26
build:
27
+ runs-on: ubuntu-16.04
28
strategy:
29
matrix:
- python: [ 2.x, 3.x, pypy3 ]
30
+ python: [ '2.x', '3.x', 'pypy3' ]
31
name: Python ${{ matrix.python }} sample
32
steps:
33
0 commit comments