Skip to content

build_wheels update #39

build_wheels update

build_wheels update #39

Workflow file for this run

name: Build

Check failure on line 1 in .github/workflows/build_wheels.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_wheels.yml

Invalid workflow file

(Line: 17, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2022, macos-13]
steps:
- uses: actions/checkout@v4
# Main Python instance to host cibuildwheel
- name: Set up Python
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.23.3
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BEFORE_BUILD: python -m pip install cython==3.0.2
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
name: wheels-${{ matrix.os }}