Skip to content

Commit

Permalink
build: add macOS and windows runners to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
boidolr committed Jul 12, 2024
1 parent 027de0b commit 531fb91
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ jobs:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
runner: [ubuntu-latest]
include:
- runner: macos-latest
python-version: "3.12"
- runner: windows-latest
python-version: "3.12"
runs-on: ${{ matrix.runner }}

steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
Expand Down

0 comments on commit 531fb91

Please sign in to comment.