Skip to content

Commit

Permalink
ci: fix coverage workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ylobankov committed Oct 13, 2022
1 parent d960476 commit c686b6e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,14 @@ jobs:
run: make -f .test.mk test-coverage

- name: Upload coverage results to coveralls.io
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage.info
run: |
coveralls-lcov --verbose \
--service-name=github \
--repo-token=${{ secrets.GITHUB_TOKEN }} \
--service-job-id=${{ github.run_id }} \
--branch=${{ github.ref }} \
--service-pull-request=${{ github.event.number }} \
./coverage.info
- name: Send VK Teams message on failure
if: failure()
Expand Down

0 comments on commit c686b6e

Please sign in to comment.