Skip to content

Commit de35ce7

Browse files
committed
ci: upload coverage report directly
1 parent bda16fd commit de35ce7

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/code_coverage.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ jobs:
3737
- name: Generate coverage .info
3838
run: cmake --build build --target coverage_report
3939
- name: Post to Coveralls
40-
uses: coverallsapp/github-action@v2
41-
with:
42-
github-token: ${{ secrets.GITHUB_TOKEN }}
43-
path-to-lcov: build/lcov.info
40+
run: |
41+
curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz
42+
./coveralls report build/lcov.info
43+
env:
44+
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)