Skip to content

Commit 0dede42

Browse files
committed
Add archiving of test results
Sometimes we need to get info from HTML report. Not sure if github can render these but should keep them somewhere.
1 parent 5a55e0e commit 0dede42

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/android.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,11 @@ jobs:
2020
uses: actions/setup-java@v1
2121
with:
2222
java-version: 1.8
23-
- name: Build with Gradle
24-
run: ./gradlew testDebug
23+
- name: Run tests with Gradle
24+
run: ./gradlew testDebug --no-daemon
25+
- name: Archive test results
26+
uses: actions/upload-artifact@v1
27+
if: always()
28+
with:
29+
name: test-results
30+
path: "yoti-sdk/build/reports/tests/"

0 commit comments

Comments
 (0)