-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove test coverage reporting from CI workflow
- Loading branch information
Showing
1 changed file
with
0 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,30 +31,3 @@ jobs: | |
|
||
- name: Execute Gradle build | ||
run: ./gradlew build --scan --no-daemon | ||
|
||
- name: Generate test coverage reports with emulator | ||
uses: ReactiveCircus/[email protected] | ||
with: | ||
api-level: 33 | ||
script: ./gradlew connectedCheck --no-daemon | ||
|
||
- name: Upload coverage reports to GitHub | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: report | ||
path: app/build/reports/coverage/androidTest/debug/connected | ||
|
||
- name: Download coverage reports | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: report | ||
path: app/build/reports/coverage/androidTest/debug/connected | ||
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
files: "app/build/reports/coverage/androidTest/debug/connected/report.xml" | ||
token: ${{ secrets.CODE_COV }} | ||
slug: PamCatten/hot-stuff | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODE_COV }} |