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 ffa4468 commit c1c92c9Copy full SHA for c1c92c9
.github/workflows/android_ci.yml
@@ -16,6 +16,16 @@ jobs:
16
run: bash ./gradlew lintDebug --stacktrace
17
- name: unit tests
18
run: bash ./gradlew testDebugUnitTest --stacktrace
19
+ - name: artifact test reports
20
+ if: failure()
21
+ uses: actions/upload-artifact@v4
22
+ with:
23
+ name: test-report
24
+ path: app/build/reports/tests/testDebugUnitTest/
25
+ - name: publish unit test results
26
+ uses: EnricoMi/publish-unit-test-result-action@v2
27
28
+ files: app/build/test-results/testDebugUnitTest/*.xml
29
- name: coverage
30
run: bash ./gradlew jacocoTestCoverageVerification --stacktrace
31
- name: artifact reports
0 commit comments