Skip to content

Commit

Permalink
Enable CodeCov Reporting
Browse files Browse the repository at this point in the history
Add initial code cov reporting
  • Loading branch information
kingargyle authored Dec 13, 2024
1 parent cdc418e commit 83011cd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,12 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean jacocoTestReport
- name: Report Code Coverage
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true # optional (default = false)
files: ./serenity-app/build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml
flags: unittests # optional
name: codecov-umbrella # optional
token: ${{ secrets.CODE_COV_SECRET }}
verbose: true # optional (default = false)

0 comments on commit 83011cd

Please sign in to comment.