-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix coveralls workflow step failures
- Loading branch information
1 parent
1a19023
commit 06a5dad
Showing
1 changed file
with
3 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,18 +24,11 @@ jobs: | |
- name: Running unit tests | ||
run: make ci/unit-test | ||
|
||
- name: Convert coverage to lcov | ||
uses: jandelgado/[email protected] | ||
with: | ||
infile: coverage.out | ||
outfile: coverage.lcov | ||
|
||
- name: Coveralls Parallel | ||
uses: coverallsapp/github-action@master | ||
continue-on-error: true | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
github-token: ${{ secrets.gh_token }} | ||
path-to-lcov: coverage.lcov | ||
path-to-lcov: ./coverage.out | ||
flag-name: run-linux | ||
parallel: true | ||
|
||
|
@@ -61,8 +54,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Coveralls Finished | ||
uses: coverallsapp/github-action@master | ||
continue-on-error: true | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
github-token: ${{ secrets.gh_token }} | ||
parallel-finished: true |