Skip to content

update cibuildwheel version #807

update cibuildwheel version

update cibuildwheel version #807

Workflow file for this run

name: CI-test
on: [push, pull_request]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install
run: pip install -e .
- name: Test
run: |
pytest --cov=./ --cov-report=xml .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}