Skip to content

Commit

Permalink
Create build_wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jun 21, 2024
1 parent 003c7b5 commit c9fa491
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# from https://cibuildwheel.pypa.io/en/stable/setup/#github-actions
name: Build
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
release:
types: [published]

concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4

0 comments on commit c9fa491

Please sign in to comment.