Skip to content

Merge branch 'master' into bind-dev #27

Merge branch 'master' into bind-dev

Merge branch 'master' into bind-dev #27

Workflow file for this run

name: Python CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- bind-dev
- v*
jobs:
standard:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest]
#python: [3.8, 3.9]
name: "💦 ${{ matrix.runs-on }}" # • 🐍 ${{ matrix.python }}
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v2
#- name: Setup Python ${{ matrix.python }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python }}
- name: Setup pybind-dev (Linux)
if: runner.os == 'Linux'
run: sudo apt-get install pybind11-dev
- name: Setup pybind-dev (macOS)
if: runner.os == 'macOS'
run: brew install pybind11
- name: Setup python dependencies (pip)
run: sudo -H python3 -m pip install pybind11 numpy matplotlib
- name: bootstrap
run: ./bootstrap.sh
- name: configure
run: ./configure
- name: make python
run: make -j 2 python
- name: make check-python
run: make check-python
- name: make check-bind
run: make -j 2 check-bind