Skip to content

Create wheels.yml

Create wheels.yml #1

Workflow file for this run

name: Build wheels
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:

Check failure on line 10 in .github/workflows/wheels.yml

View workflow run for this annotation

GitHub Actions / Build wheels

Invalid workflow file

The workflow is not valid. .github/workflows/wheels.yml (Line: 10, Col: 14): Unexpected value '' .github/workflows/wheels.yml (Line: 12, Col: 7): Unexpected value 'os'
# os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v3
- 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