From 01c41d8e146e987cfd6bb48fea8dd0e362149899 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 24 Oct 2024 13:23:03 +0200 Subject: [PATCH] gh-actions: build wheels for MS Windows as well --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 5cf901b7..67c1d8d4 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -83,13 +83,13 @@ jobs: name: artifact-source path: dist/*.tar.gz - build_wheels_macos: + build_wheels_nonlinux: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: # macos-13 is an intel runner, macos-14 is apple silicon - os: [macos-13, macos-14] + os: [macos-13, macos-14, windows-latest] steps: - uses: actions/checkout@v4 if: ${{ github.event_name != 'repository_dispatch' }}