Skip to content

wheels

wheels #1

Workflow file for this run

name: wheels
on:
workflow_dispatch:
release:
types: [published]
jobs:
wheels:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: pypa/cibuildwheel@v2.18
env:
CIBW_BUILD: "cp310-* cp311-* cp312-*"
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "python -c \"import bioimage_cpp\" && pytest {project}/tests"