Skip to content

Commit

Permalink
fixup! Always process code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed Feb 5, 2025
1 parent f5e2145 commit 0f307c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ jobs:
PYTHON: ''
TRIXI_TEST: ${{ matrix.trixi_test }}
- uses: julia-actions/julia-processcoverage@v1
if: always()
if: ${{ !cancelled() }}
with:
directories: src,examples,ext
- uses: codecov/codecov-action@v5
if: always()
if: ${{ !cancelled() }}
with:
files: ./lcov.info
flags: unittests
Expand All @@ -155,7 +155,7 @@ jobs:
# - Download and merge individual coverage reports in another step
# - Upload only the merged coverage report to Coveralls
- shell: bash
if: always()
if: ${{ !cancelled() }}
run: |
cp ./lcov.info ./lcov-${{ matrix.trixi_test }}-${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }}.info
- uses: actions/upload-artifact@v4
Expand All @@ -165,7 +165,7 @@ jobs:

finish:
needs: test
if: always()
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
# The standard setup of Coveralls is just annoying for parallel builds, see, e.g.,
Expand Down

0 comments on commit 0f307c0

Please sign in to comment.