Skip to content

remove comments

remove comments #15

name: run-google-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install gtest manually
run: sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp lib/*.a /usr/lib && sudo ln -s /usr/lib/libgtest.a /usr/local/lib/libgtest.a && sudo ln -s /usr/lib/libgtest_main.a /usr/local/lib/libgtest_main.a
- uses: actions/checkout@v1
- name: Download Eigen library
run: git clone https://gitlab.com/libeigen/eigen.git
- name: Compile
run: make
- name: Run Test
run: make alltest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3