Python CI build (v1) #10
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: Build & test | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build C++ | |
run: ./build_library_and_example.sh | |
build_python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Install build dependencies | |
run: | | |
sudo apt-get install python3 python3-pip | |
pip install pybind11 | |
- name: Build Python | |
run: ./build_and_test_python_library.sh |