Merge branch 'jachym-dev' of github.com:bbodin/kiter into bruno-dev #117
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: C/C++ CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install deps | |
run: sudo apt-get install git make cmake gcc g++ libboost-all-dev libxml2-dev libglpk-dev glpk-utils | |
- name: make | |
run: make all | |
- name: make unit_test | |
run: make unit_test | |
- name: make check | |
run: make check |