Skip to content

Commit 34ffd8c

Browse files
committed
CI: fix quoting for python-version list
1 parent b75a927 commit 34ffd8c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,13 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: [2.7,3.5,3.6,3.7, 3.8,3.9]
21-
20+
python-version:
21+
- "2.7"
22+
- "3.5"
23+
- "3.6"
24+
- "3.7"
25+
- "3.8"
26+
- "3.9"
2227
steps:
2328
- uses: actions/checkout@v2
2429
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)