From 6738fbda9412a36fe289d7b458f2a88b0ef08e4f Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 31 Jan 2021 13:49:27 +0100 Subject: [PATCH] :construction_worker: add CI step for coverage --- .clang-tidy | 2 +- .github/workflows/ubuntu.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 179dbb994..610b22839 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -41,4 +41,4 @@ CheckOptions: WarningsAsErrors: '*' #HeaderFilterRegex: '.*nlohmann.*' -HeaderFilterRegex: '^.*hpp$' +HeaderFilterRegex: '.*\.hpp$' diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index c7bc8c306..438cf4200 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -131,9 +131,9 @@ jobs: uses: actions/upload-artifact@v2 with: name: code-coverage-report - path: build/build_coverage/html + path: html - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: build/build_coverage/json.info + path-to-lcov: json.info