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

fix codecov ignore paths #28

Merged
merged 4 commits into from
Apr 3, 2024
Merged
Changes from 2 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
8 changes: 4 additions & 4 deletions .codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@
# 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/*"
- "github/**/*"
MatousJobanek marked this conversation as resolved.
Show resolved Hide resolved
- "**/main.go"
- "make/*"
- "resources/*"
- "test-resources/*"
- "resources/**/*"
- "test-resources/**/*"

# See https://docs.codecov.com/docs/pull-request-comments
comment:
Expand Down
Loading