Skip to content

XX

XX #22

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
jobs:
ci-macos:
strategy:
matrix:
pyversion: ["3.9", "3.10", "3.11"]
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- name: Fetch dependencies
run: |
python3 --version
python3 -m pip install ivpm
python3 -m ivpm update
./packages/python/bin/python -m pip install cython setuptools wheel build
- name: Build wheel
run: |
./packages/python/bin/python setup.py bdist_wheel