We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebba2e commit 1d5cd3eCopy full SHA for 1d5cd3e
2 files changed
.github/actions/gcovr/run_gcovr.sh
@@ -16,7 +16,7 @@ gcovr_args=(
16
--json-summary "${OUTPUT_DIR}/summary.json"
17
--html --html-details
18
-o "${OUTPUT_DIR}/index.html"
19
- --cobertura "${OUTPUT_DIR}/cobertura.xml"
+ --lcov "${OUTPUT_DIR}/coverage.lcov"
20
--exclude '.*contrib/.*'
21
--exclude '.*tests/.*'
22
--exclude '.*/_deps/.*'
.github/workflows/coverage.yml
@@ -74,8 +74,9 @@ jobs:
74
uses: codecov/codecov-action@v5
75
with:
76
use_oidc: true
77
- files: build/coverage/cobertura.xml
+ files: build/coverage/coverage.lcov
78
disable_search: true
79
+ plugins: noop
80
flags: sdk
81
name: ydb-cpp-sdk
82
fail_ci_if_error: true
0 commit comments