Skip to content

Commit

Permalink
Add Windows and MacOS to CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jaime-cespedes-sisniega committed Mar 31, 2024
1 parent 3104e20 commit e1d84cc
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,20 @@ on:

jobs:
python-version:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9',
'3.10',
'3.11',
'3.12',]
os: [
ubuntu-22.04,
windows-2022,
macos-12,
]
python-version: [
'3.9',
'3.10',
'3.11',
'3.12',
]

steps:
- name: Checkout
Expand Down

0 comments on commit e1d84cc

Please sign in to comment.