blob: 3442be768791874958ddfcf5e2b01d82439d7a2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# # NOTICE
#
# ## Before Committing
# 1. Verify the validity of the configuration via the following shell command;
# ```shell
# cat codecov.yml | curl --data-binary @- https://codecov.io/validate
# ```
codecov:
token: "secret:MV/bbQs7G9pJMr9d23PBUd+s6PP3MMj3RGqwOIWIlUH4639jfrTi+CxbHTBhicskHyYRuaDoTLB+HbktHuxYftPEC+MLacZJAn3krVe2jj8="
bot: "codecov-io"
strict_yaml_branch: "yaml-config"
max_report_age: 24
disable_default_path_fixes: no
require_ci_to_pass: yes
notify:
after_n_builds: 2
wait_for_ci: yes
coverage:
range: 50..90
round: nearest
precision: 2
status:
project:
default:
target: auto
threshold: 0%
flags:
- unit
paths:
- "src"
#branches:
#- main
if_ci_failed: error
informational: false
only_pulls: false
patch: false
github_checks:
annotations: false
|