We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bda6678 + 86a3157 commit 66d7feeCopy full SHA for 66d7fee
.github/workflows/ci.yml
@@ -66,7 +66,9 @@ jobs:
66
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
67
- name: Run tests
68
run: ./gradlew --no-daemon clean jacocoTestReport
69
- - name: Report test coverage
70
- run: |
71
- pip install --user codecov
72
- codecov
+ - name: Upload code coverage
+ uses: codecov/codecov-action@v4
+ with:
+ # Set to `true` once codecov token bug is fixed; https://github.com/parse-community/parse-server/issues/9129
73
+ fail_ci_if_error: false
74
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments