File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed
Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,7 @@ indent_size = 2
2020[* .json ]
2121max_line_length = off
2222indent_size = 2
23+
24+ [* .yml ]
25+ max_line_length = off
26+ indent_size = 2
Original file line number Diff line number Diff line change 1-
21name : CI
32
43on :
@@ -23,18 +22,25 @@ jobs:
2322 java-version : ' 17'
2423 distribution : ' adopt'
2524
25+ - name : Cache gradle
26+ uses : actions/cache@v4
27+ with :
28+ path : |
29+ ~/.gradle/caches
30+ ~/.gradle/wrapper
31+ key : gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
32+ restore-keys : |
33+ gradle-${{ runner.os }}-
34+
2635 - name : Decode google-services.json
2736 run : echo "$GOOGLE_SERVICES_JSON_BASE64" | base64 -d > app/google-services.json
2837 env :
29- GOOGLE_SERVICES_JSON_BASE64 : ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}
38+ GOOGLE_SERVICES_JSON_BASE64 : ${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}
3039
3140 - name : Make gradlew executable
3241 run : chmod +x gradlew
3342
34- - name : gradle wrapper
35- run : gradle wrapper
36-
37- - name : Build for Debug with Gradle
43+ - name : Build for debug with gradle
3844 run : ./gradlew assembleDebug
3945
4046 - name : Run tests
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ android {
8383 buildTypes {
8484 debug {
8585 signingConfig = signingConfigs.getByName(" debug" )
86- // applicationIdSuffix = ".dev"
8786 }
8887 release {
8988 isMinifyEnabled = false
You can’t perform that action at this time.
0 commit comments