-
Notifications
You must be signed in to change notification settings - Fork 0
chore: improve review-dep-pr skill and add Codecov Test Analytics #317
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
Changes from all commits
5a7c576
8f42581
efc5239
5a3b5e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -76,15 +76,23 @@ jobs: | |||||||||||||||||||
| # Codecov upload is best-effort — CI should not fail on Codecov outages | ||||||||||||||||||||
| # or missing tokens. Coverage enforcement is handled by --cov-fail-under. | ||||||||||||||||||||
| - name: Upload coverage to Codecov | ||||||||||||||||||||
| if: always() | ||||||||||||||||||||
| if: ${{ !cancelled() }} | ||||||||||||||||||||
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5 | ||||||||||||||||||||
| with: | ||||||||||||||||||||
| token: ${{ secrets.CODECOV_TOKEN }} | ||||||||||||||||||||
| files: coverage.xml | ||||||||||||||||||||
| fail_ci_if_error: false | ||||||||||||||||||||
|
|
||||||||||||||||||||
| - name: Upload test results to Codecov | ||||||||||||||||||||
| if: ${{ !cancelled() }} | ||||||||||||||||||||
| uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 | ||||||||||||||||||||
| with: | ||||||||||||||||||||
| token: ${{ secrets.CODECOV_TOKEN }} | ||||||||||||||||||||
|
greptile-apps[bot] marked this conversation as resolved.
|
||||||||||||||||||||
| files: junit.xml | ||||||||||||||||||||
| fail_ci_if_error: false | ||||||||||||||||||||
|
|
||||||||||||||||||||
|
Comment on lines
+87
to
+93
|
||||||||||||||||||||
| if: ${{ !cancelled() }} | |
| uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| if: ${{ !cancelled() && secrets.CODECOV_TOKEN != '' }} | |
| continue-on-error: true | |
| uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |
Uh oh!
There was an error while loading. Please reload this page.