From 8ada1940916b7c32b601259a35be751e17b1d7cd Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Wed, 13 Dec 2023 09:08:40 +0100 Subject: [PATCH] build: ignore external code for code coverage check Signed-off-by: Daniel Wagner --- .github/workflows/coverage.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 3ed1f995..2e2ffdae 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,5 +18,10 @@ jobs: run: | scripts/build.sh coverage - uses: codecov/codecov-action@v3 + ignore: + - 'subprojects' + - 'ccan' + - 'test' + - 'examples' with: fail_ci_if_error: false