Skip to content

Commit

Permalink
Update Codecov YAML Boolean syntax
Browse files Browse the repository at this point in the history
yes -> true
no -> false

❯ curl --data-binary @.github/codecov.yml https://codecov.io/validate
Valid!
  • Loading branch information
br3ndonland committed Oct 21, 2021
1 parent 19e95c8 commit 75a3b02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
codecov:
require_ci_to_pass: yes
require_ci_to_pass: true
comment:
layout: "reach,diff,flags,files,footer"
behavior: default
require_changes: no
require_changes: false
coverage:
precision: 1
range: "70...100"
Expand All @@ -20,7 +20,7 @@ coverage:
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
macro: no
method: no
conditional: true
loop: true
macro: false
method: false

0 comments on commit 75a3b02

Please sign in to comment.