Skip to content

Bump pypa/cibuildwheel from 2.17.0 to 2.18.0 #238

Bump pypa/cibuildwheel from 2.17.0 to 2.18.0

Bump pypa/cibuildwheel from 2.17.0 to 2.18.0 #238

Workflow file for this run

name: tests
on:
push:
branches: [main]
tags-ignore: ['**']
pull_request:
workflow_dispatch:
env:
MACOSX_DEPLOYMENT_TARGET: '12.0'
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
- name: Install dependencies
run: |
python -m pip install --user tox
python -m pip install --user --pre tox-gh-actions
- name: Run tests
run: |-
python -m tox