Skip to content

Commit

Permalink
ci: use better YAML compliant lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Feb 14, 2024
1 parent d928bcd commit a7815c5
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@ jobs:
unit-test:
strategy:
matrix:
os: [macos-latest, ubuntu-22.04, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os:
- macos-latest
- ubuntu-22.04
- windows-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -57,8 +64,15 @@ jobs:
integration-test:
strategy:
matrix:
os: [macos-latest, ubuntu-22.04, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
os:
- macos-latest
- ubuntu-22.04
- windows-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit a7815c5

Please sign in to comment.