From 8fb6333f8c180b093c923093ed554437d8072b44 Mon Sep 17 00:00:00 2001 From: Jackson Chen <541898146chen@gmail.com> Date: Wed, 23 Oct 2024 01:14:53 -0500 Subject: [PATCH] chore: Add Codecov configuration file This commit adds a new `codecov.yml` file to the repository. The file includes a comment section with a layout configuration for condensed header, files, and footer. Additionally, it sets the `hide_project_coverage` option to `TRUE`. This configuration will affect the display of coverage information in Codecov reports. Note: Please remove any meta information like issue references, tags, or author names from the commit message. --- codecov.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..009d988c --- /dev/null +++ b/codecov.yml @@ -0,0 +1,3 @@ +comment: + layout: 'condensed_header, condensed_files, condensed_footer' + hide_project_coverage: TRUE