Skip to content

Commit 06e8a20

Browse files
vchuravyranocha
andauthored
Always process code coverage (#2261)
* Always process code coverage * fixup! Always process code coverage --------- Co-authored-by: Hendrik Ranocha <[email protected]>
1 parent 90e4e7c commit 06e8a20

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,11 @@ jobs:
120120
PYTHON: ''
121121
TRIXI_TEST: ${{ matrix.trixi_test }}
122122
- uses: julia-actions/julia-processcoverage@v1
123+
if: ${{ !cancelled() }}
123124
with:
124125
directories: src,examples,ext
125126
- uses: codecov/codecov-action@v5
127+
if: ${{ !cancelled() }}
126128
with:
127129
files: ./lcov.info
128130
flags: unittests
@@ -146,6 +148,7 @@ jobs:
146148
# - Download and merge individual coverage reports in another step
147149
# - Upload only the merged coverage report to Coveralls
148150
- shell: bash
151+
if: ${{ !cancelled() }}
149152
run: |
150153
cp ./lcov.info ./lcov-${{ matrix.trixi_test }}-${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }}.info
151154
- uses: actions/upload-artifact@v4
@@ -155,6 +158,7 @@ jobs:
155158

156159
finish:
157160
needs: test
161+
if: ${{ !cancelled() }}
158162
runs-on: ubuntu-latest
159163
steps:
160164
# The standard setup of Coveralls is just annoying for parallel builds, see, e.g.,

0 commit comments

Comments
 (0)