Merged
Conversation
…ht-renderer. Changes: - Coverage job: removed id-token permission and test-results-action - Test job: added nextest with ci profile for MSRV, uploads test results - cargo-test action: added nextest-profile parameter for JUnit XML generation - Removed redundant JSON test report generation and artifact uploads - Simplified summary outputs for better clarity Benefits: - Coverage and test analytics properly separated - Token-based authentication only (no OIDC conflicts) - JUnit XML auto-generated via nextest ci profile - Cleaner job responsibilities and artifact management Test plan: - All 236 tests pass with nextest ci profile - JUnit XML generated at target/nextest/ci/junit.xml (43KB) - YAML validation successful Closes #213
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixed Codecov unknown coverage and test analytics configuration by separating responsibilities between coverage and test jobs, matching the working configuration from infra-metrics-insight-renderer.
Changes
Coverage Job
id-token: writepermission (not needed with token-based auth)codecov/test-results-action(moved to test job)Test Job
cargo-nextestinstallation for MSRV versioncodecov/test-results-actionfor MSRV test results uploadcargo-test Action
nextest-profileparameter for conditional nextest executionTechnical Details
JUnit XML Generation:
target/nextest/ci/junit.xmlAuthentication:
token: ${{ secrets.CODECOV_TOKEN }}Benefits
Test Plan
Closes #213