From 5999a9bf3e9713a8e82d504283db97df128afd0a Mon Sep 17 00:00:00 2001 From: Snehasish Kumar Date: Mon, 12 Aug 2024 14:47:35 -0700 Subject: [PATCH] Update ci.yml to run tests with gcov build --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5614b77..92d23ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,4 +36,6 @@ jobs: run: cmake -DENABLE_TOOL=GCOV -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++ -DCMAKE_C_COMPILER=gcc -B build-gcov - name: build for gcov run: make -j 8 -C build-gcov + - name: run tests for gcov + run: make test -C build-gcov