Skip to content

Build library using cibuildwheel and conan #41

Build library using cibuildwheel and conan

Build library using cibuildwheel and conan #41

name: Python Unit Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure --color=always
unit-tests:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/[email protected]
- name: Setup devbox environment
run: echo $PWD && echo ".ci/devbox-{{ matrix.python-version }}.json" && ln -sf ".ci/devbox-{{ matrix.python-version }}.json" devbox.json
- name: Build and install
run: devbox run python setup.py build_ext --inplace
- name: Run unit-tests
run: devbox run pytest -vv -s