Skip to content

Update GA to remomve spruious comment. #80

Update GA to remomve spruious comment.

Update GA to remomve spruious comment. #80

Workflow file for this run

name: Build wheels
on:
push:
branches:
- master
- update-cicd
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_TEST_SOURCES: tests
CIBW_TEST_COMMAND: "pytest tests"
CIBW_TEST_REQUIRES: pytest pytest-cov pytest-mock codecov
CIBW_SKIP: cp38-* cp39-* cp310-* cp311-* cp313-* *-musllinux* *-manylinux_i686
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ github.run_id }}
path: ./wheelhouse/*.whl