Skip to content

Introduce full_test.yml and use Python versions 3.8 to 3.12 in CIBW_BUILD. #20

Introduce full_test.yml and use Python versions 3.8 to 3.12 in CIBW_BUILD.

Introduce full_test.yml and use Python versions 3.8 to 3.12 in CIBW_BUILD. #20

Workflow file for this run

name: Full test
on:
push:
branches: [ master]
pull_request:
branches: [ master ]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-12, macos-14]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl