Skip to content

Commit a75fb86

Browse files
format yml
1 parent 000c489 commit a75fb86

File tree

1 file changed

+59
-59
lines changed

1 file changed

+59
-59
lines changed

.github/workflows/build.yml

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -12,83 +12,83 @@ jobs:
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 30
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v5
1616

17-
- name: Set up JDK 21
18-
uses: actions/setup-java@v5
19-
with:
20-
java-version: '21'
21-
distribution: 'temurin'
17+
- name: Set up JDK 21
18+
uses: actions/setup-java@v5
19+
with:
20+
java-version: '21'
21+
distribution: 'temurin'
2222

23-
- name: Cache local Maven repository
24-
uses: actions/cache@v4
25-
with:
26-
path: ~/.m2/repository
27-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28-
restore-keys: |
29-
${{ runner.os }}-maven-
23+
- name: Cache local Maven repository
24+
uses: actions/cache@v4
25+
with:
26+
path: ~/.m2/repository
27+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28+
restore-keys: |
29+
${{ runner.os }}-maven-
3030
31-
- name: Verify
32-
run: ./mvnw clean verify -U
31+
- name: Verify
32+
run: ./mvnw clean verify -U
3333

34-
- name: Checkstyle
35-
run: ./mvnw checkstyle:check
34+
- name: Checkstyle
35+
run: ./mvnw checkstyle:check
3636

3737
windows:
3838
name: Windows
3939
runs-on: windows-latest
4040
timeout-minutes: 30
4141
steps:
42-
- name: Set git to use LF
43-
run: |
44-
git config --global core.autocrlf false
45-
git config --global core.eol lf
42+
- name: Set git to use LF
43+
run: |
44+
git config --global core.autocrlf false
45+
git config --global core.eol lf
4646
47-
- uses: actions/checkout@v5
47+
- uses: actions/checkout@v5
4848

49-
- name: Set up JDK 21
50-
uses: actions/setup-java@v5
51-
with:
52-
java-version: '21'
53-
distribution: 'temurin'
49+
- name: Set up JDK 21
50+
uses: actions/setup-java@v5
51+
with:
52+
java-version: '21'
53+
distribution: 'temurin'
5454

55-
- name: Cache local Maven repository
56-
uses: actions/cache@v4
57-
with:
58-
path: $HOME/.m2/repository
59-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
60-
restore-keys: |
61-
${{ runner.os }}-maven-
55+
- name: Cache local Maven repository
56+
uses: actions/cache@v4
57+
with:
58+
path: $HOME/.m2/repository
59+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
60+
restore-keys: |
61+
${{ runner.os }}-maven-
6262
63-
- name: Verify
64-
run: ./mvnw.cmd clean verify
63+
- name: Verify
64+
run: ./mvnw.cmd clean verify
6565

66-
- name: Checkstyle
67-
run: ./mvnw.cmd checkstyle:check
66+
- name: Checkstyle
67+
run: ./mvnw.cmd checkstyle:check
6868

6969
darwin:
7070
name: macOS
7171
runs-on: macos-latest
7272
timeout-minutes: 30
7373
steps:
74-
- uses: actions/checkout@v5
75-
76-
- name: Set up JDK 21
77-
uses: actions/setup-java@v5
78-
with:
79-
java-version: '21'
80-
distribution: 'temurin'
81-
82-
- name: Cache local Maven repository
83-
uses: actions/cache@v4
84-
with:
85-
path: ~/.m2/repository
86-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
87-
restore-keys: |
88-
${{ runner.os }}-maven-
89-
90-
- name: Verify
91-
run: ./mvnw clean verify -U
92-
93-
- name: Checkstyle
94-
run: ./mvnw checkstyle:check
74+
- uses: actions/checkout@v5
75+
76+
- name: Set up JDK 21
77+
uses: actions/setup-java@v5
78+
with:
79+
java-version: '21'
80+
distribution: 'temurin'
81+
82+
- name: Cache local Maven repository
83+
uses: actions/cache@v4
84+
with:
85+
path: ~/.m2/repository
86+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
87+
restore-keys: |
88+
${{ runner.os }}-maven-
89+
90+
- name: Verify
91+
run: ./mvnw clean verify -U
92+
93+
- name: Checkstyle
94+
run: ./mvnw checkstyle:check

0 commit comments

Comments
 (0)