diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c0a815f6..90e05c40 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,8 +9,3 @@ updates: directory: "/" # Location of package manifests schedule: interval: "weekly" - - # - package-ecosystem: "gitsubmodule" # See documentation for possible values - # directory: "/" # Location of package manifests - # schedule: - # interval: "weekly" diff --git a/.github/workflows/tests_and_coverage.yml b/.github/workflows/tests_and_coverage.yml index d3816396..f6afe817 100644 --- a/.github/workflows/tests_and_coverage.yml +++ b/.github/workflows/tests_and_coverage.yml @@ -46,19 +46,11 @@ jobs: run: | cd ${{ runner.workspace }}/build && ctest -C ${{ matrix.buildtype }} --output-on-failure - # - name: Format coverage - # shell: bash - # run: | - # cd ${{ runner.workspace }}/build - # lcov --directory . --capture --output-file coverage.info - # lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' --output-file coverage.info - # lcov --list coverage.info - - name: Format coverage shell: bash run: | cd ${{ runner.workspace }}/build - gcovr --root .. --output coverage.xml + gcovr -r . --filter='.*/clic/src/.*' --xml -o coverage.xml - name: Upload coverage report uses: codecov/codecov-action@v3