Skip to content

Bump pypa/cibuildwheel from 2.18.1 to 2.19.1 #110

Bump pypa/cibuildwheel from 2.18.1 to 2.19.1

Bump pypa/cibuildwheel from 2.18.1 to 2.19.1 #110

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
name: Build and test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'requirements*.txt'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest wheel
- name: Install htc
run: pip install --no-use-pep517 -e .
- name: Tests
run: py.test --doctest-modules --import-mode=importlib --collect-only .