Skip to content

Updated build.yml

Updated build.yml #3

Workflow file for this run

name: Build Wheels
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install maturin cibuildwheel
- name: Build wheels
run: |
cibuildwheel --output-dir wheelhouse