diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pull_request.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 688ac96e..8306d009 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -92,3 +92,10 @@ jobs: adb shell settings put global transition_animation_scale 0 adb shell settings put global window_animation_scale 0 ./gradlew :app:connectedNonFreeDebugAndroidTest + + - name: (Fail-only) upload test report + if: failure() + uses: actions/upload-artifact@v2 + with: + name: Test report + path: app/build/reports |