Skip to content

v0.6.2

v0.6.2 #14

Workflow file for this run

name: Test with cibuildwheel
on:
push:
branches: ["main"]
paths-ignore:
- "docs/**"
pull_request:
branches: ["*"]
paths-ignore:
- "docs/**"
jobs:
build_and_test_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
- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
- name: Install cibuildwheel
run: python -m pip install ".[test]"
- name: Build wheels
run: python -m cibuildwheel