We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda16fd commit de35ce7Copy full SHA for de35ce7
1 file changed
.github/workflows/code_coverage.yml
@@ -37,7 +37,8 @@ jobs:
37
- name: Generate coverage .info
38
run: cmake --build build --target coverage_report
39
- 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
+ run: |
+ curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz
+ ./coveralls report build/lcov.info
+ env:
44
+ COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments