From c9fa4910461ad23905745f7bba2fd182a59777c7 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Fri, 21 Jun 2024 18:06:08 -0400 Subject: [PATCH] Create build_wheels.yml --- .github/workflows/build_wheels.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build_wheels.yml diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml new file mode 100644 index 0000000..2fb2adc --- /dev/null +++ b/.github/workflows/build_wheels.yml @@ -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