|
60 | 60 | runs-on: ubuntu-latest |
61 | 61 | strategy: |
62 | 62 | matrix: |
63 | | - python-version: [3.6, 3.7, 3.8, 3.9] |
| 63 | + python-version: ["3.6", "3.7", "3.8", "3.9"] |
64 | 64 |
|
65 | 65 | steps: |
66 | 66 | - uses: actions/checkout@v2 |
@@ -119,7 +119,7 @@ jobs: |
119 | 119 | # You can use PyPy versions in python-version. |
120 | 120 | # For example, pypy2 and pypy3 |
121 | 121 | matrix: |
122 | | - python-version: [2.7, 3.6, 3.7, 3.8, 3.9] |
| 122 | + python-version: ["2.7", "3.6", "3.7", "3.8", "3.9"] |
123 | 123 |
|
124 | 124 | steps: |
125 | 125 | - uses: actions/checkout@v2 |
@@ -182,12 +182,12 @@ jobs: |
182 | 182 | strategy: |
183 | 183 | matrix: |
184 | 184 | os: [ubuntu-latest, macos-latest, windows-latest] |
185 | | - python-version: [3.6, 3.7, 3.8, 3.9, pypy2, pypy3] |
| 185 | + python-version: ["3.6", "3.7", "3.8", "3.9", pypy2, pypy3] |
186 | 186 | exclude: |
187 | 187 | - os: macos-latest |
188 | | - python-version: 3.6 |
| 188 | + python-version: "3.6" |
189 | 189 | - os: windows-latest |
190 | | - python-version: 3.6 |
| 190 | + python-version: "3.6" |
191 | 191 | ``` |
192 | 192 | {% endraw %} |
193 | 193 |
|
@@ -344,7 +344,7 @@ jobs: |
344 | 344 | runs-on: ubuntu-latest |
345 | 345 | strategy: |
346 | 346 | matrix: |
347 | | - python: [3.7, 3.8, 3.9] |
| 347 | + python: ["3.7", "3.8", "3.9"] |
348 | 348 |
|
349 | 349 | steps: |
350 | 350 | - uses: actions/checkout@v2 |
@@ -378,7 +378,7 @@ jobs: |
378 | 378 | runs-on: ubuntu-latest |
379 | 379 | strategy: |
380 | 380 | matrix: |
381 | | - python-version: [3.6, 3.7, 3.8, 3.9] |
| 381 | + python-version: ["3.6", "3.7", "3.8", "3.9"] |
382 | 382 |
|
383 | 383 | steps: |
384 | 384 | - uses: actions/checkout@v2 |
|
0 commit comments