Skip to content

Commit

Permalink
Add matrix with OS in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Oct 19, 2024
1 parent cfb6083 commit 6cf5975
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ jobs:

strategy:
matrix:
os:
- ubuntu-24.04
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

name: Python ${{ matrix.python-version }}
runs-on: ubuntu-24.04
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

steps:

Expand Down

0 comments on commit 6cf5975

Please sign in to comment.