From f80ffd031cd7362f6886c082a97bd2538e41d212 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Wed, 13 Dec 2023 09:29:40 +0100 Subject: [PATCH] build: add codecov configuration Unfortunatly, the codecov configuration wants to have it's own configurtion file on top level of the project. Signed-off-by: Daniel Wagner --- .github/workflows/coverage.yml | 5 ----- codecov.yml | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 codecov.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 2e2ffdae..3ed1f995 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,10 +18,5 @@ jobs: run: | scripts/build.sh coverage - uses: codecov/codecov-action@v3 - ignore: - - 'subprojects' - - 'ccan' - - 'test' - - 'examples' with: fail_ci_if_error: false diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..d40a8ea9 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,6 @@ +--- +ignore: + - 'subprojects' + - 'ccan' + - 'test' + - 'examples' -- 2.50.1