Skip to content

Commit f0d573c

Browse files
committed
style: style
Signed-off-by: ok-coder1 <codershub.code@gmail.com>
1 parent 6ce69f0 commit f0d573c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,22 @@ jobs:
1919
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
22+
2223
- name: Validate Gradle wrapper
2324
uses: gradle/actions/wrapper-validation@v4
25+
2426
- name: Setup JDK
2527
uses: actions/setup-java@v4
2628
with:
2729
java-version: ${{ matrix.java-version }}
2830
distribution: microsoft
31+
2932
- name: Make Gradle wrapper executable
3033
run: chmod +x ./gradlew
34+
3135
- name: Build
3236
run: ./gradlew build
37+
3338
- name: Capture build artifacts
3439
uses: actions/upload-artifact@v4
3540
with:

.github/workflows/pr-compile.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,18 @@ jobs:
1414
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
17+
1718
- name: Validate Gradle wrapper
1819
uses: gradle/actions/wrapper-validation@v4
20+
1921
- name: Setup JDK
2022
uses: actions/setup-java@v4
2123
with:
2224
java-version: ${{ matrix.java-version }}
2325
distribution: microsoft
26+
2427
- name: Make Gradle wrapper executable
2528
run: chmod +x ./gradlew
26-
- name: Compile Java
27-
run: ./gradlew compileJava
28-
- name: Compile client-side Java
29-
run: ./gradlew compileClientJava
29+
30+
- name: Compile Java and client-side Java
31+
run: ./gradlew compileJava compileClientJava

0 commit comments

Comments
 (0)