Skip to content

Commit 1555e6d

Browse files
Fix CodeCov upload issues (#1648)
Disable codecov binary validation which seems to be constantly failing ``` gpg: Signature made Tue Apr 21 19:28:03 2026 UTC gpg: using RSA key 27034E7FDB850E0BBC2C62FF806BB28AED779869 gpg: Can't check signature: No public key ==> Could not verify signature. Please contact Codecov if problem continues Exiting... ``` <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated CI workflow notes and removed an outdated header comment. * Added explanatory comments to the Linux job and adjusted the code coverage upload step to use a relaxed validation mode (no other upload settings changed). <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: Keval Morabia <28916987+kevalmorabia97@users.noreply.github.com>
1 parent 2c52e7b commit 1555e6d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/unit_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# NOTE: Make sure this file is consistent with .gitlab/tests.yml
21
name: Unit tests
32

43
on:
@@ -73,6 +72,10 @@ jobs:
7372
token: ${{ secrets.CODECOV_TOKEN }}
7473
flags: unit
7574
fail_ci_if_error: true
75+
# Skip GPG/SHASUM integrity check of the Codecov CLI: its key import
76+
# intermittently fails (codecov/codecov-action#1876), which would
77+
# otherwise hard-fail this required job on a transient infra blip.
78+
skip_validation: true
7679
verbose: true
7780
windows:
7881
if: needs.check-file-changes.outputs.any_changed == 'true'

0 commit comments

Comments
 (0)