Skip to content

Commit

Permalink
Fix definition of Python version in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Aug 19, 2024
1 parent 36d0633 commit d04f2d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
python-version: [ 3.10 ]
python-version: [ "3.10" ]
tasks: [ tests ]
include:
- os: ubuntu-latest
python-version: 3.8
python-version: "3.8"
tasks: tests
- os: ubuntu-latest
python-version: 3.9
python-version: "3.9"
tasks: tests
- os: ubuntu-latest
python-version: 3.10
python-version: "3.10"
tasks: docs

steps:
Expand Down

0 comments on commit d04f2d1

Please sign in to comment.