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 681e076 commit 56ee239Copy full SHA for 56ee239
.github/workflows/pull_request.yml
@@ -9,7 +9,6 @@ env:
9
ANDROID_ABI: x86_64
10
NDK_ARCH: darwin
11
12
-
13
permissions:
14
contents: read
15
@@ -128,4 +127,11 @@ jobs:
128
127
# this is needed on API 30+
129
#target: google_apis
130
arch: ${{env.ANDROID_ABI}}
131
- script: ./gradlew runtestsAndVerifyResults --stacktrace
+ script: ./gradlew runtestsAndVerifyResults --stacktrace
+ - name: Test Report
132
+ uses: dorny/test-reporter@b082adf0eced0765477756c2a610396589b8c637 # v2.5.0
133
+ if: ${{ !cancelled() }} # run this step even if previous step failed
134
+ with:
135
+ name: Android Runtime Tests
136
+ path: test-app/dist/android_unit_test_results.xml
137
+ reporter: jest-junit # Format of test results
0 commit comments