Skip to content

Fix pytest arguments #50

Fix pytest arguments

Fix pytest arguments #50

Workflow file for this run

name: Wheels
on:
push:
branches:
- 'releases/**'
- 'ci/**'
tags:
- v*
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
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
submodules: true
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Build wheels
uses: pypa/cibuildwheel@v2.19.1
env:
CIBW_SKIP: cp36-* cp37-* pp* cp312-*i686*
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl