We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9367816 commit 37dc0b9Copy full SHA for 37dc0b9
1 file changed
.github/workflows/android_build.yml
@@ -76,9 +76,5 @@ jobs:
76
echo "Checking app info..."
77
adb shell dumpsys package info.melda.sala.zetemezszam | head -20 || echo "Could not get package info"
78
echo "Running instrumentation tests..."
79
- if ./gradlew connectedAndroidTest 2>&1; then
80
- echo "Instrumentation tests passed successfully"
81
- else
82
- echo "ERROR: Instrumentation tests failed"
83
- exit 1
84
- fi
+ ./gradlew connectedAndroidTest 2>&1 || (echo "ERROR: Instrumentation tests failed" && exit 1)
+ echo "Instrumentation tests passed successfully"
0 commit comments