-
Notifications
You must be signed in to change notification settings - Fork 985
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add CodeCov configuration, enable test analytics * Issue in argument * ... and the right filename * ... perhaps by specifying exactly where the file is? * Polishing * Check why configuration is not working * Final version
- Loading branch information
Showing
4 changed files
with
72 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
codecov: # see https://docs.codecov.com/docs/codecovyml-reference | ||
branch: main | ||
|
||
coverage: | ||
status: # see https://docs.codecov.com/docs/commit-status | ||
project: | ||
default: | ||
target: auto # minimum coverage ratio that the commit must meet to be considered a success | ||
threshold: 5 # Allow the coverage to drop by <number>%, and posting a success status | ||
branches: | ||
- main | ||
- '[0-9].*' | ||
|
||
comment: # see https://docs.codecov.com/docs/pull-request-comments | ||
layout: "condensed_header, condensed_files, condensed_footer" | ||
behavior: new | ||
require_changes: true # Only post comment if there are changes in coverage (positive or negative) | ||
|
||
component_management: # see https://docs.codecov.com/docs/components | ||
individual_components: | ||
- component_id: module_json | ||
name: Lettuce JSON | ||
paths: | ||
- src/main/java/**/json/** | ||
- component_id: module_api | ||
name: Lettuce API | ||
paths: | ||
- src/main/java/**/api/** | ||
- component_id: module_sentinel | ||
name: Lettuce Sentinel | ||
paths: | ||
- src/main/java/**/sentinel/** | ||
- component_id: module_cluster | ||
name: Lettuce Cluster | ||
paths: | ||
- src/main/java/**/cluster/** | ||
- component_id: module_pubsub | ||
name: Lettuce PubSub | ||
paths: | ||
- src/main/java/**/pubsub/** | ||
- component_id: module_masterreplica | ||
name: Lettuce Master/Replica | ||
paths: | ||
- src/main/java/**/masterreplica/** | ||
- src/main/java/**/masterslave/** | ||
- component_id: module_metrics | ||
name: Lettuce Metrics & Tracing | ||
paths: | ||
- src/main/java/**/metrics/** | ||
- src/main/java/**/tracing/** | ||
- component_id: module_core | ||
name: Lettuce Core | ||
paths: | ||
- src/main/java/**/core/* | ||
- src/main/java/**/codec/** | ||
- src/main/java/**/dynamic/** | ||
- src/main/java/**/event/** | ||
- src/main/java/**/internal/** | ||
- src/main/java/**/protocol/** | ||
- src/main/java/**/resource/** | ||
- src/main/java/**/support/** | ||
- component_id: module_kotlin | ||
name: Lettuce Kotlin | ||
paths: | ||
- src/main/kotlin/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Check Spelling | ||
uses: rojopolis/[email protected] | ||
with: | ||
|