Skip to content

github: migrating cibuildwheel to separate action #33

github: migrating cibuildwheel to separate action

github: migrating cibuildwheel to separate action #33

Workflow file for this run

name: Python CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- bind-scikit-build-dev
jobs:
build_wheels:

Check failure on line 11 in .github/workflows/python.yml

View workflow run for this annotation

GitHub Actions / Python CI

Invalid workflow file

The workflow is not valid. .github/workflows/python.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build wheels on ${{ matrix.os }}
needs: standard
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
#os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
# env:
# CIBW_SOME_OPTION: value
# ...
# with:
# package-dir: .
# output-dir: wheelhouse
# config-file: "{package}/pyproject.toml"
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl