Skip to content

Commit c9fa491

Browse files
authored
Create build_wheels.yml
1 parent 003c7b5 commit c9fa491

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build_wheels.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# from https://cibuildwheel.pypa.io/en/stable/setup/#github-actions
2+
name: Build
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
branches: ["master"]
8+
release:
9+
types: [published]
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
build_wheels:
17+
name: Build wheels on ${{ matrix.os }}
18+
runs-on: ${{ matrix.os }}
19+
strategy:
20+
matrix:
21+
# macos-13 is an intel runner, macos-14 is apple silicon
22+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
23+
steps:
24+
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)