From 933c459ac16c354f6c1bff308d281148640d26bd Mon Sep 17 00:00:00 2001 From: Martin Olivier Date: Sat, 27 Jul 2024 01:32:35 +0200 Subject: [PATCH] fix: remove still-reachable checks on valgrind CI --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a21c8d4..ee6e8af 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -87,7 +87,7 @@ jobs: - name: Run unit tests with valgrind working-directory: build - run: valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 ./unit_tests + run: valgrind --leak-check=full --show-leak-kinds=definite,possible --error-exitcode=1 ./unit_tests linter: name: linter