XX #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |