From 1c279fe1ec7acbc4265e522361d6d1f7941ab4c8 Mon Sep 17 00:00:00 2001 From: Michael Schlottke-Lakemper Date: Thu, 22 Jun 2023 13:15:25 +0200 Subject: [PATCH] Fix path to lcov file --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f0c06ce..851792d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -125,7 +125,7 @@ jobs: - uses: codecov/codecov-action@v3 if: ${{ matrix.test_type == 'coverage' }} with: - files: ./lcov.info + files: ./run/lcov.info flags: unittests name: codecov-umbrella - name: Coveralls @@ -133,7 +133,7 @@ jobs: uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ./lcov.info + path-to-lcov: ./run/lcov.info # Enable tmate debugging of manually-triggered workflows if the input option was provided - name: Setup tmate session for debugging if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled && always() }}