Bump version to 0.6.0b8, Added cp37-abi3-win32
build
#305
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
- bugfix/* | |
- feature/* | |
jobs: | |
bdist: | |
name: build bdist wheels and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
- os: macos-11 | |
- os: windows-2019 | |
arch: auto64 | |
- os: windows-2019 | |
arch: auto32 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
# macOS make is too old | |
- if: runner.os == 'macOS' | |
run: brew install make | |
- name: Build | |
uses: pypa/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl |