Skip to content

Commit

Permalink
Add windows and mac runners
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoopmans committed Aug 11, 2024
1 parent 25d7acc commit 268cc73
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:
path: .coverage

Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -51,7 +52,7 @@ jobs:
if: success()
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.python-version }}
name: coverage-${{ matrix.python-version }}-${{ matrix.os }}
path: .coverage

combine-coverage:
Expand Down

0 comments on commit 268cc73

Please sign in to comment.