Skip to content

Bump pypa/cibuildwheel from 2.20.0 to 2.21.1 #46

Bump pypa/cibuildwheel from 2.20.0 to 2.21.1

Bump pypa/cibuildwheel from 2.20.0 to 2.21.1 #46

Workflow file for this run

name: Test with PyPI
on: [pull_request, workflow_dispatch]
env:
PYTHONUNBUFFERED: 1
jobs:
# Test against PyPI packages
test-with-pypi:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- name: Clone the SciMath source
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package under test
run: python -m pip install .
- name: Run tests
run: |
mkdir testdir
cd testdir
python -X faulthandler -m unittest discover -v scimath