Skip to content

Commit 01d3eb1

Browse files
committed
reformat the yml
1 parent 9bd5b55 commit 01d3eb1

File tree

3 files changed

+73
-73
lines changed

3 files changed

+73
-73
lines changed

.github/workflows/android-build-debug.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ jobs:
99
runs-on: self-hosted
1010

1111
steps:
12-
- name: Checkout repository
13-
uses: actions/checkout@v4
14-
15-
- name: Set up JDK 17
16-
uses: actions/setup-java@v4
17-
with:
18-
java-version: '17'
19-
distribution: 'temurin'
20-
21-
- name: Grant execute permission for gradlew
22-
run: chmod +x gradlew
23-
24-
- name: Build ARM64 Debug APK
25-
run: ./gradlew :app:assembleArm64Debug
26-
27-
- name: Upload ARM64 Debug APK
28-
uses: actions/upload-artifact@v4
29-
with:
30-
name: arm64-debug-apk
31-
path: app/build/outputs/apk/arm64/debug/app-arm64-debug.apk
32-
retention-days: 30
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v4
17+
with:
18+
java-version: '17'
19+
distribution: 'temurin'
20+
21+
- name: Grant execute permission for gradlew
22+
run: chmod +x gradlew
23+
24+
- name: Build ARM64 Debug APK
25+
run: ./gradlew :app:assembleArm64Debug
26+
27+
- name: Upload ARM64 Debug APK
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: arm64-debug-apk
31+
path: app/build/outputs/apk/arm64/debug/app-arm64-debug.apk
32+
retention-days: 30

.github/workflows/linux-build.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ jobs:
99
runs-on: self-hosted
1010

1111
steps:
12-
- name: Checkout repository
13-
uses: actions/checkout@v4
14-
15-
- name: Set up JDK 17
16-
uses: actions/setup-java@v4
17-
with:
18-
java-version: '17'
19-
distribution: 'temurin'
20-
21-
- name: Grant execute permission for gradlew
22-
run: chmod +x gradlew
23-
24-
- name: Build Linux Shadow Jar
25-
run: ./gradlew :linux:shadowJar
26-
27-
- name: Upload ARM64 Debug APK
28-
uses: actions/upload-artifact@v4
29-
with:
30-
name: linux-shadow-jar
31-
path: linux/build/libs/linux-shadow.jar
32-
retention-days: 30
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v4
17+
with:
18+
java-version: '17'
19+
distribution: 'temurin'
20+
21+
- name: Grant execute permission for gradlew
22+
run: chmod +x gradlew
23+
24+
- name: Build Linux Shadow Jar
25+
run: ./gradlew :linux:shadowJar
26+
27+
- name: Upload ARM64 Debug APK
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: linux-shadow-jar
31+
path: linux/build/libs/linux-shadow.jar
32+
retention-days: 30

.github/workflows/test.yml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,34 @@ jobs:
99
runs-on: self-hosted
1010

1111
steps:
12-
- name: Checkout repository
13-
uses: actions/checkout@v4
14-
15-
- name: Set up JDK 17
16-
uses: actions/setup-java@v4
17-
with:
18-
java-version: '17'
19-
distribution: 'temurin'
20-
21-
- name: Grant execute permission for gradlew
22-
run: chmod +x gradlew
23-
24-
- name: Run unit tests
25-
run: ./gradlew test
26-
27-
- name: Run lint checks
28-
run: ./gradlew lint
29-
30-
- name: Run all verification checks
31-
run: ./gradlew check
32-
33-
- name: Upload test results
34-
uses: actions/upload-artifact@v4
35-
if: always()
36-
with:
37-
name: test-results
38-
path: |
39-
**/build/reports/tests/**
40-
**/build/reports/lint-results*.html
41-
**/*.sarif
42-
retention-days: 30
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v4
17+
with:
18+
java-version: '17'
19+
distribution: 'temurin'
20+
21+
- name: Grant execute permission for gradlew
22+
run: chmod +x gradlew
23+
24+
- name: Run unit tests
25+
run: ./gradlew test
26+
27+
- name: Run lint checks
28+
run: ./gradlew lint
29+
30+
- name: Run all verification checks
31+
run: ./gradlew check
32+
33+
- name: Upload test results
34+
uses: actions/upload-artifact@v4
35+
if: always()
36+
with:
37+
name: test-results
38+
path: |
39+
**/build/reports/tests/**
40+
**/build/reports/lint-results*.html
41+
**/*.sarif
42+
retention-days: 30

0 commit comments

Comments
 (0)