Needed to initslize all hyro variables to 0 first #96
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++ 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 | |