We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 506e119 commit 0168db1Copy full SHA for 0168db1
.github/workflows/coverage.yml
@@ -110,6 +110,12 @@ jobs:
110
- name: Upload coverage to Coveralls
111
env:
112
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113
- COVERALLS_SERVICE_NAME: github-actions
+ COVERALLS_SERVICE_NAME: github
114
+ COVERALLS_SERVICE_NUMBER: ${{ github.run_number }}
115
+ COVERALLS_SERVICE_JOB_ID: ${{ github.run_id }}
116
+ COVERALLS_GIT_BRANCH: ${{ github.ref_name }}
117
+ COVERALLS_GIT_COMMIT: ${{ github.sha }}
118
+ COVERALLS_PARALLEL: false
119
run: |
- cat coverage/lcov.info | coveralls
120
+ echo "Uploading coverage for build #${{ github.run_number }}"
121
+ cat coverage/lcov.info | coveralls --verbose
0 commit comments