Skip to content

Commit

Permalink
ci: fix issue specifyng the Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigomelo9 committed Sep 7, 2024
1 parent 1a0ff91 commit 8c061c1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu, windows]
pyver: [3.8, 3.9, 3.10, 3.11, 3.12]
os: ['ubuntu', 'windows']
pyver: ['3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- os: windows
pyver: 3.8
- os: windows
pyver: 3.9
- os: windows
pyver: 3.10
- os: windows
pyver: 3.11
- os: 'windows'
pyver: '3.8'
- os: 'windows'
pyver: '3.9'
- os: 'windows'
pyver: '3.10'
- os: 'windows'
pyver: '3.11'
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} | ${{ matrix.pyver }}
steps:
Expand Down

0 comments on commit 8c061c1

Please sign in to comment.