From fa101ae124971c3afaed2dac5932bd6fdbc18f92 Mon Sep 17 00:00:00 2001 From: injae <8687lee@gmail.com> Date: Mon, 1 Jan 2024 04:31:22 +0900 Subject: [PATCH] remove sudo --- .github/workflows/code-cov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-cov.yml b/.github/workflows/code-cov.yml index ec316e1..acebb6b 100644 --- a/.github/workflows/code-cov.yml +++ b/.github/workflows/code-cov.yml @@ -38,7 +38,7 @@ jobs: - name: Prepare Codecov run: | - sudo apt-get install -y lcov + apt-get install -y lcov lcov --directory . --capture --output-file coverage.info --rc lcov_branch_coverage=1 # capture coverage info lcov --remove coverage.info '/usr/*' --output-file coverage.info --rc lcov_branch_coverage=1 # filter out system lcov --list coverage.info --rc lcov_branch_coverage=1 # debug info