Skip to content

Removed intel compiler warning from docs #595

Removed intel compiler warning from docs

Removed intel compiler warning from docs #595

Workflow file for this run

name: Unittests
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check GNU and Cmake versions
run: gcc --version && cmake --version
- name: Checkout repository
uses: actions/checkout@v1
- name: Get submodules
run: git submodule init
&& git submodule update
- name: Configure
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Release -D BUILD_TESTS=ON
- name: Build
run: cmake --build build
- name: Run all tests
run: cd build/tests/unit-tests
&& ctest --verbose