Skip to content

Use meson to build the wheel #11

Use meson to build the wheel

Use meson to build the wheel #11

Workflow file for this run

name: Full Tests
on:
pull_request:
push:
branches: [main]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
os: [windows-latest, ubuntu-latest, macos-latest]
fail-fast: false
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Setup Micromamba Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@422500192359a097648154e8db4e39bdb6c6eed7 #v1
with:
environment-name: TEST
init-shell: bash
create-args: >-
python=${{ matrix.python-version }} pip python-build compilers --channel conda-forge
- name: Install wheel
run: >
python -m build --wheel . --outdir dist
&& pip install pytest dist/*.whl
- name: Tests
run: >
cp -R test/ dist/test/
&& pushd dist/
&& python -m pytest -rxs test