File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 23
23
- name : Grant execute permission for gradlew
24
24
run : chmod +x gradlew
25
25
- name : All tests excluding iosTest
26
- run : ./gradlew allTests -x iosTest
26
+ run : ./gradlew cleanTest test -x compileDebugUnitTestKotlinAndroid -x compileReleaseUnitTestKotlinAndroid -x iosTest
27
27
- name : Run Android Instrumented Tests
28
28
uses : reactivecircus/android-emulator-runner@v2
29
29
with :
Original file line number Diff line number Diff line change @@ -12,10 +12,14 @@ buildscript {
12
12
jcenter()
13
13
google()
14
14
gradlePluginPortal()
15
+ maven {
16
+ url = uri(" https://plugins.gradle.org/m2/" )
17
+ }
15
18
}
16
19
dependencies {
17
20
classpath(" com.android.tools.build:gradle:3.6.1" )
18
21
classpath(" de.undercouch:gradle-download-task:4.0.4" )
22
+ classpath(" com.adarshr:gradle-test-logger-plugin:2.0.0" )
19
23
}
20
24
}
21
25
@@ -43,12 +47,14 @@ subprojects {
43
47
44
48
group = " dev.gitlive"
45
49
46
-
50
+ apply (plugin= " com.adarshr.test-logger" )
51
+
47
52
repositories {
48
53
mavenLocal()
49
54
mavenCentral()
50
55
google()
51
56
jcenter()
57
+
52
58
}
53
59
54
60
var shouldSign = true
You can’t perform that action at this time.
0 commit comments