Skip to content

Merge pull request #2 from JoeZiminski/add_cibuildwheels #1

Merge pull request #2 from JoeZiminski/add_cibuildwheels

Merge pull request #2 from JoeZiminski/add_cibuildwheels #1

Workflow file for this run

name: build wheels
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CFLAGS: "-std=c++11"
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: cd {package} && ls
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.0
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl