From 65a2b44c9040b6eb34e353a25073f3eb5b1ec73c Mon Sep 17 00:00:00 2001 From: Otto Seiskari Date: Sun, 2 Jun 2024 14:54:00 +0300 Subject: [PATCH] Python CI build (v1) --- .github/workflows/build.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a0a0fc..258dc47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Cleanup working dir - run: rm -rf target example/target - - name: Build + - 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 \ No newline at end of file