From cc194a05753c9e2348cdbbb719e4edf97389e841 Mon Sep 17 00:00:00 2001 From: Daniel Chappuis Date: Wed, 4 Aug 2021 23:16:53 +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 8ed9fd20..b3bc91c1 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -195,9 +195,12 @@ jobs: cmake --build build_hello_world/ --config ${{ matrix.config.build_type }} ./build_hello_world/helloworld - - name: Test Coverage + - name: Compute Code Coverage + if: ${{ matrix.config.coverage }} shell: bash - run: ls -la coverage/ + run: | + make ReactPhysics3D_coverage + ls -la coverage/ - name: Upload coverage to Codecov if: ${{ matrix.config.coverage }}