Skip to content

Merge pull request #1224 from Dessia-tech/fix_ci #16

Merge pull request #1224 from Dessia-tech/fix_ci

Merge pull request #1224 from Dessia-tech/fix_ci #16

Workflow file for this run

name: Test wheel build without pypi upload
# Build on every branch push, tag push, and pull request change:
#on: [push]
# Alternatively, to publish when a (published) GitHub Release is created, use the following:
on:
push:
branches:
- master
- fix/ci
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v3
name: Install Python
with:
python-version: 3.9
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==2.16.1
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl