Skip to content

Commit 8a0439c

Browse files
committed
format workflows
1 parent 8b0c7ea commit 8a0439c

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
17-
18-
- name: Set up JDK
19-
uses: actions/setup-java@v2
20-
with:
21-
distribution: 'zulu'
22-
java-version: '11'
23-
24-
- name: Make gradlew executable
25-
run: chmod +x ./gradlew
26-
27-
# - name: Spotless check
28-
# uses: gradle/gradle-build-action@v2
29-
# with:
30-
# arguments: spotlessCheck
31-
32-
- name: Build debug APK
33-
uses: gradle/gradle-build-action@v2
34-
with:
35-
arguments: assembleDebug --warning-mode all --stacktrace
36-
37-
- name: Upload APK
38-
uses: actions/upload-artifact@v2
39-
with:
40-
name: app-debug
41-
path: app/build/outputs/apk/debug/app-debug.apk
16+
- uses: actions/checkout@v2
17+
18+
- name: Set up JDK
19+
uses: actions/setup-java@v2
20+
with:
21+
distribution: 'zulu'
22+
java-version: '11'
23+
24+
- name: Make gradlew executable
25+
run: chmod +x ./gradlew
26+
27+
- name: Spotless check
28+
uses: gradle/gradle-build-action@v2
29+
with:
30+
arguments: spotlessCheck
31+
32+
- name: Build debug APK
33+
uses: gradle/gradle-build-action@v2
34+
with:
35+
arguments: assembleDebug --warning-mode all --stacktrace
36+
37+
- name: Upload APK
38+
uses: actions/upload-artifact@v2
39+
with:
40+
name: app-debug
41+
path: app/build/outputs/apk/debug/app-debug.apk

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Validate Gradle Wrapper
2-
on: [push, pull_request]
2+
on: [ push, pull_request ]
33

44
jobs:
55
validation:

.github/workflows/remove-old-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Remove old artifacts
22

33
on:
4-
# push:
5-
# branches: [ master ]
4+
# push:
5+
# branches: [ master ]
66

77
schedule:
88
# Runs at 01:00 UTC on the 1, 8, 15, 22 and 29th of every month.

0 commit comments

Comments
 (0)