Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add .codecov.yaml #19

Merged
merged 2 commits into from
Mar 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .codecov.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Config can be validated before merging: curl -X POST --data-binary @.codecov.yaml https://codecov.io/validate
codecov:
max_report_age: "off" # see https://docs.codecov.io/docs/codecov-yaml#section-expired-reports

# See http://docs.codecov.io/docs/coverage-configuration
coverage:
precision: 2 # 2 = xx.xx%, 0 = xx%
round: down
# For example: 20...60 would result in any coverage less than 20%
# would have a red background. The color would gradually change to
# green approaching 60%. Any coverage over 60% would result in a
# solid green color.
range: "20...60"

# See https://docs.codecov.com/docs/commit-status
status:
# project will give us the diff in the total code coverage between a commit
# and its parent
project:
default:
# Allow the coverage to drop by 1%, and posting a success status.
threshold: 1%
# Patch gives just the coverage of the patch
patch: yes

Check warning on line 24 in .codecov.yaml

View workflow job for this annotation

GitHub Actions / YAML Lint

24:12 [truthy] truthy value should be one of [false, true]
# changes tells us if there are unexpected code coverage changes in other files
# which were not changed by the diff
changes: yes

Check warning on line 27 in .codecov.yaml

View workflow job for this annotation

GitHub Actions / YAML Lint

27:14 [truthy] truthy value should be one of [false, true]

# See http://docs.codecov.io/docs/ignoring-paths
ignore:
- "github/*"
- "cmd/*"
- "make/*"
- "resources/*"
- "test-resources/*"

# See https://docs.codecov.com/docs/pull-request-comments
comment:
layout: "header, diff, tree"
# default = posts once then update, posts new if delete
# once = post once then updates
# new = delete old, post new
# spammy = post new
behavior: "new"
Loading