Merge branch 'master' into bind-dev #28
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: 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 | |