From 8eb024e6edb234479f64577a28d3d89341c2a36b Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Wed, 4 Aug 2021 21:23:06 +0200 Subject: [PATCH] Working on Github Actions --- .github/workflows/build-and-test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2a1c5c3a..8ed9fd20 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -193,13 +193,16 @@ jobs: -DCMAKE_EXE_LINKER_FLAGS=-no-pie \ -G "${{ matrix.config.generators }}" cmake --build build_hello_world/ --config ${{ matrix.config.build_type }} - ls -la build_hello_world ./build_hello_world/helloworld + - name: Test Coverage + shell: bash + run: ls -la coverage/ + - name: Upload coverage to Codecov if: ${{ matrix.config.coverage }} uses: codecov/codecov-action@v2 with: - path_to_write_report: ./coverage/codecov_report.txt + fail_ci_if_error: true verbose: true