Skip to content

Commit 8c061c1

Browse files
committed
ci: fix issue specifyng the Python version
1 parent 1a0ff91 commit 8c061c1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ jobs:
77
test:
88
strategy:
99
matrix:
10-
os: [ubuntu, windows]
11-
pyver: [3.8, 3.9, 3.10, 3.11, 3.12]
10+
os: ['ubuntu', 'windows']
11+
pyver: ['3.8', '3.9', '3.10', '3.11', '3.12']
1212
exclude:
13-
- os: windows
14-
pyver: 3.8
15-
- os: windows
16-
pyver: 3.9
17-
- os: windows
18-
pyver: 3.10
19-
- os: windows
20-
pyver: 3.11
13+
- os: 'windows'
14+
pyver: '3.8'
15+
- os: 'windows'
16+
pyver: '3.9'
17+
- os: 'windows'
18+
pyver: '3.10'
19+
- os: 'windows'
20+
pyver: '3.11'
2121
runs-on: ${{ matrix.os }}-latest
2222
name: ${{ matrix.os }} | ${{ matrix.pyver }}
2323
steps:

0 commit comments

Comments
 (0)