Skip to content

Commit

Permalink
feat(ci): added Windows runner and matrix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed May 1, 2024
1 parent e7f95ad commit a998821
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ on:

jobs:
build:
runs-on: "ubuntu-latest"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit a998821

Please sign in to comment.