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 d5fe30f commit 3983f2fCopy full SHA for 3983f2f
.github/workflows/test.yaml
@@ -133,6 +133,15 @@ jobs:
133
adb logcat | grep EppoSDK >> app/emulator.log & # pipe all logcat messages into log file as a background process
134
./gradlew connectedCheck --no-daemon -Pandroid.testInstrumentationRunnerArguments.TEST_DATA_BRANCH=${{ env.TEST_DATA_BRANCH }} # run tests
135
136
+ - name: Store reports on failure
137
+ if: failure()
138
+ uses: actions/upload-artifact@v4
139
+ with:
140
+ name: reports
141
+ path: |
142
+ **/build/reports/
143
+ **/build/test-results/
144
+
145
- name: Upload Emulator Logs
146
if: always()
147
uses: actions/upload-artifact@v4
0 commit comments