From 864bacbfae923f17aa496b431e03456dc0710900 Mon Sep 17 00:00:00 2001 From: Sebastian Miasojed Date: Tue, 7 Nov 2023 11:49:03 +0100 Subject: [PATCH] Enabled codecov in GHA --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01a4c2fe502..3a49c9b8295 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -450,14 +450,12 @@ jobs: grcov . --binary-path ./target/debug/ --source-dir . --output-type lcov --llvm --branch \ --ignore-not-existing --ignore "/*" --ignore "tests/*" --output-path lcov-w-branch.info rust-covfix lcov-w-branch.info --output lcov-w-branch-fixed.info - # TODO: Enable when Gitlab CI is disabled - #codecov --token "$CODECOV_P_TOKEN" --file lcov-w-branch-fixed.info --nonZero + codecov --token "$CODECOV_P_TOKEN" --file lcov-w-branch-fixed.info --nonZero # lines coverage grcov . --binary-path ./target/debug/ --source-dir . --output-type lcov --llvm \ --ignore-not-existing --ignore "/*" --ignore "tests/*" --output-path lcov-lines.info rust-covfix lcov-lines.info --output lcov-lines-fixed.info - # TODO: Enable when Gitlab CI is disabled - #codecov --token "$CODECOV_TOKEN" --file lcov-lines-fixed.info --nonZero + codecov --token "$CODECOV_TOKEN" --file lcov-lines-fixed.info --nonZero ### examples