Skip to content

Commit

Permalink
sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
jbboehr committed Apr 7, 2024
1 parent 8af7a6d commit b1bef2f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -246,20 +246,22 @@ jobs:

- run: nix build -L ".#${{ matrix.attr }}"

- run: find result*; cp result-coverage/coverage.info coverage.info || true

- name: Upload coverage reports to Codecov
if: ${{ hashFiles('result-coverage/coverage.info') != '' }}
if: ${{ hashFiles('coverage.info') != '' }}
uses: codecov/codecov-action@v4
with:
file: result-coverage/coverage.info
file: coverage.info
token: ${{ secrets.CODECOV_TOKEN }}
slug: jbboehr/php-perfifidous

- name: Coveralls
if: ${{ hashFiles('result-coverage/coverage.info') != '' }}
if: ${{ hashFiles('coverage.info') != '' }}
uses: coverallsapp/github-action@v2
continue-on-error: true
with:
file: result-coverage/coverage.info
file: coverage.info
format: lcov
parallel: true

Expand Down

0 comments on commit b1bef2f

Please sign in to comment.