Improve logs #358
Workflow file for this run
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: Unit tests Linux | |
on: [push] | |
jobs: | |
unit-tests: | |
name: Build and run | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the project | |
uses: actions/checkout@v2 | |
- name: CMake | |
run: | | |
cd ./build | |
CC=gcc-10 CXX=/usr/bin/g++-10 cmake -G"Unix Makefiles" ./.. -DCMAKE_BUILD_TYPE=Release | |
- name: Make | |
run: | | |
cd ./build | |
make | |
- name: Execute unit tests | |
run: | | |
cd ./build | |
./tests/unit_tests/UnitTests --gtest_also_run_disabled_tests |