From cf7cf7a9ecd775ccc8822fa2d39b0b1133bc0344 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 16 Sep 2024 20:16:05 +0800 Subject: [PATCH] test: find the downloaded data --- .github/workflows/my_codecov.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/my_codecov.yml b/.github/workflows/my_codecov.yml index 06b50c153..1d847ae00 100644 --- a/.github/workflows/my_codecov.yml +++ b/.github/workflows/my_codecov.yml @@ -70,6 +70,9 @@ jobs: merge-multiple: true - name: Run Grcov run: | + ls -la ./target/debug + pwd + ls -la . cargo install grcov; mkdir /tmp/cov; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;