From d5ac71a108d33e09d24a8540dcd6b37236ffb2d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rune=20S=C3=B8e-Knudsen?= <41109954+urrsk@users.noreply.github.com> Date: Sat, 1 Jul 2023 22:36:23 +0200 Subject: [PATCH] Add codecov.yml to exclude test and examples folders (#152) Avoid punishing commits that includes examples and unit test --- .github/codecov.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/codecov.yml diff --git a/.github/codecov.yml b/.github/codecov.yml new file mode 100644 index 00000000..516c65ae --- /dev/null +++ b/.github/codecov.yml @@ -0,0 +1,8 @@ +#To validate before committing: 'curl -X POST --data-binary @codecov.yml https://codecov.io/validate' + +codecov: + strict_yaml_branch: default # only use the latest YAML on stated branch + +ignore: + - "examples/*" # ignore examples + - "tests/*" # ignore unit tests \ No newline at end of file