Skip to content

Merge branch 'dev' of https://github.com/Propulsive-Landing/ferda int… #88

Merge branch 'dev' of https://github.com/Propulsive-Landing/ferda int…

Merge branch 'dev' of https://github.com/Propulsive-Landing/ferda int… #88

Workflow file for this run

name: C++ Build Test
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# - name: Set up C++ build environment
# uses: actions/setup-cpp@v2
# with:
# compiler: 'clang'
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libgtest-dev libeigen3-dev
- name: Build
run: cmake -DCMAKE_BUILD_TYPE=Debug -Bbuild . && make -C build