Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ubuntu-22.04, macos-13, macos-latest]
# Windows Wheel build doesn't work yet.
# os: [windows-2022]

permissions:
contents: read
Expand All @@ -64,6 +66,13 @@ jobs:
with:
submodules: true

- uses: actions/setup-go@v5
# Linux runner doesn't need Go setup because it's installed
# separately in each cibuildwheel build container
if: "${{ runner.os != 'Linux' }}"
with:
go-version: "1.23.7"

- name: Build wheels
uses: pypa/cibuildwheel@ee63bf16da6cddfb925f542f2c7b59ad50e93969 # v2.22.0
env:
Expand Down