File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,26 @@ name: Lint & Test with Gradle
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [main]
66 pull_request :
77
88jobs :
99 gradle :
1010 runs-on : ubuntu-latest
1111 strategy :
1212 matrix :
13- java-version : ['17', '21']
13+ java-version :
14+ - " 17"
15+ - " 21"
16+ - " 25"
1417
1518 steps :
1619 - uses : actions/checkout@v5
1720 - name : Install JDK
1821 uses : actions/setup-java@v5
1922 with :
2023 java-version : ${{ matrix.java-version }}
21- distribution : ' adopt'
24+ distribution : " adopt"
2225 - name : Lint
2326 run : gradle spotlessCheck
2427 - name : Build & Test
Original file line number Diff line number Diff line change @@ -2,23 +2,26 @@ name: Lint & Test with Maven
22
33on :
44 push :
5- branches : [ main ]
5+ branches : [main]
66 pull_request :
77
88jobs :
99 mvn :
1010 runs-on : ubuntu-latest
1111 strategy :
1212 matrix :
13- java-version : ['11', '17', '21']
13+ java-version :
14+ - " 17"
15+ - " 21"
16+ - " 25"
1417
1518 steps :
1619 - uses : actions/checkout@v5
1720 - name : Install JDK
1821 uses : actions/setup-java@v5
1922 with :
2023 java-version : ${{ matrix.java-version }}
21- distribution : ' adopt'
24+ distribution : " adopt"
2225 - name : Lint
2326 run : mvn --batch-mode spotless:check
2427 - name : Build & Test
You can’t perform that action at this time.
0 commit comments