File tree Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -25,24 +25,27 @@ jobs:
25
25
26
26
steps :
27
27
- name : Checkout Project
28
- uses : actions/checkout@v3.4.0
28
+ uses : actions/checkout@v4.1.1
29
29
30
30
- name : Validate Gradle Wrapper
31
- uses : gradle/wrapper-validation-action@v1.0.6
31
+ uses : gradle/wrapper-validation-action@v2.1.1
32
32
33
- - name : Setup Java ${{ matrix.java-version }}
34
- uses : actions/setup-java@v3.10 .0
33
+ - name : Configure JDK ${{ env.JAVA_VERSION }}
34
+ uses : actions/setup-java@v4.0 .0
35
35
with :
36
36
distribution : temurin
37
- java-version : ${{ matrix.java-version }}
37
+ java-version : ${{ env.JAVA_VERSION }}
38
38
cache : gradle
39
39
40
- - name : Build Debug APKs and Run lint checks
41
-
42
- with :
43
- arguments : assembleDebug lintDebug -s
40
+ - name : Setup Gradle
41
+ uses :
gradle/actions/[email protected]
42
+ - run : ./gradlew --version
43
+
44
+ - name : Build Debug APK
45
+ run : ./gradlew assembleDebug -s
46
+
47
+ - name : Run Debug Lint Checks
48
+ run : ./gradlew lintDebug -s
44
49
45
50
- name : Run Debug Unit Tests
46
-
47
- with :
48
- arguments : testDebug -s
51
+ run : ./gradlew testDebug -s
You can’t perform that action at this time.
0 commit comments