Skip to content

Commit 859eff7

Browse files
Fix coverage workflow configuration
- Remove duplicate coverage upload from CI_1.10.yml workflow
1 parent c25b234 commit 859eff7

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

.github/workflows/CI_1.10.yml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,5 @@ jobs:
5555
MERA_TEST_TIMEOUT: 1800
5656
MERA_DOWNLOAD_RETRIES: 3
5757

58-
- name: Process coverage
59-
uses: julia-actions/julia-processcoverage@v1
60-
if: matrix.version == '1.10' && matrix.os == 'ubuntu-latest'
61-
62-
- name: Upload coverage to Codecov
63-
uses: codecov/codecov-action@v4
64-
if: matrix.version == '1.10' && matrix.os == 'ubuntu-latest'
65-
with:
66-
files: lcov.info
67-
token: ${{ secrets.CODECOV_TOKEN }}
68-
fail_ci_if_error: false
69-
verbose: true
70-
71-
- name: Upload coverage to Coveralls
72-
uses: julia-actions/julia-uploadcoveralls@v1
73-
if: matrix.version == '1.10' && matrix.os == 'ubuntu-latest'
74-
env:
75-
COVERALLS_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
58+
# Note: Coverage processing and upload is handled only by CI_1.11.yml
59+
# to avoid duplicate coverage reports and ensure single source of truth

.github/workflows/CI_1.11.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
MERA_TEST_TIMEOUT: 1800
5656
MERA_DOWNLOAD_RETRIES: 3
5757

58+
# Coverage processing and upload - CI_1.11.yml is the designated coverage workflow
5859
- name: Process coverage
5960
uses: julia-actions/julia-processcoverage@v1
6061
if: matrix.version == '1.11' && matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)