Skip to content

Commit

Permalink
install python interface
Browse files Browse the repository at this point in the history
  • Loading branch information
hallfjonas committed Dec 31, 2023
1 parent 9e7d9c5 commit 2b2ace5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/project-builder-w-python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build & Test (ubuntu)

on:
push:
branches:
- 'improve-python-installation'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: install pre-reqs
run: sudo apt-get install -y build-essential cmake libeigen3-dev python3-dev
- name: build step
run: mkdir build; cd build; cmake ..; make;
- name: run tests
run: sh test.sh

0 comments on commit 2b2ace5

Please sign in to comment.