From f43ab05cef9ef276ac829245a5268583f7644c6c Mon Sep 17 00:00:00 2001 From: Guilherme Pereira Date: Sun, 17 Mar 2024 17:32:17 +0000 Subject: [PATCH] Fix github action --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 24952b1..64dded7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -57,7 +57,7 @@ jobs: cargo install grcov --force; rm -rf lcov.info; sudo apt install make -y - make run-all-tests $CARGO_OPTIONS; + make test $CARGO_OPTIONS; zip -0 ccov.zip `find . \( -name "$PROJECT_NAME_UNDERSCORE*.gc*" \) -print`; grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore "/*" -o lcov.info;