From 6fd7e2aa41ac68c17c02b75239494ef2f1f11970 Mon Sep 17 00:00:00 2001 From: ephphatha Date: Mon, 16 May 2022 13:18:44 +1000 Subject: [PATCH] Enable gcov support in codecov uploader Appears this was added in v3 and wasn't available in v2. Doesn't appear to be active by default? --- .github/workflows/Linux_x86_64_test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Linux_x86_64_test.yml b/.github/workflows/Linux_x86_64_test.yml index c3d282d9d..621c2637d 100644 --- a/.github/workflows/Linux_x86_64_test.yml +++ b/.github/workflows/Linux_x86_64_test.yml @@ -35,5 +35,6 @@ jobs: - name: Run tests run: cd build && ctest --output-on-failure - name: Upload results - uses: codecov/codecov-action@v2 - # using default arguments, no token required for public repos + uses: codecov/codecov-action@v3 + with: + gcov: true