From a1f50a4544197be2a34c9d2dfdd15b1ae3b1b6c9 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 1 Nov 2023 12:57:39 -0700 Subject: [PATCH] Add workflow to build wheels --- .github/workflows/cibuildwheel.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/cibuildwheel.yml diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml new file mode 100644 index 0000000..3fa8ff6 --- /dev/null +++ b/.github/workflows/cibuildwheel.yml @@ -0,0 +1,21 @@ +name: Build + +on: [push, pull_request] + +jobs: + build_wheels: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + + steps: + - uses: actions/checkout@v2 + + - name: Build wheels + uses: pypa/cibuildwheel@v2.16.2 + + - uses: actions/upload-artifact@v2 + with: + path: ./wheelhouse/*.whl