Skip to content

meson 14

meson 14 #148

Workflow file for this run

name: build-macos
on:
push:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Fortran compiler on mac
run: brew reinstall gcc
- name: Install package and dependencies
run: |
# brew install openblas
# OPENBLAS="$(brew --prefix openblas)"
python -m pip install --upgrade pip
python -m pip install --upgrade numpy
python -m pip install . -vvv
- name: Test
run: |
python -m pip install --upgrade pytest
python -m pip install --upgrade pytest-cov
python -m pip install -r tests/requirements.txt
mv special_functions special_functions_do_not_import
pytest