name: Build wheels on: [push] 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.2.0a1 env: CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" CIBW_TEST_REQUIRES: tox CIBW_TEST_COMMAND: cd {project} && tox CIBW_TEST_SKIP: "*-win*" CIBW_BUILD_VERBOSITY: 1 - name: Store wheels uses: actions/upload-artifact@v2 with: path: ./wheelhouse/*.whl