Merge pull request #34 from eurogroep/build/install-packagexml #40
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build with CMake | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: deps | |
run: sudo apt-get install libeigen3-dev | |
- name: configure | |
run: mkdir build && cd build && cmake .. | |
- name: build | |
run: cmake --build build |