File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,25 @@ 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"
1416
1517 steps :
1618 - uses : actions/checkout@v5
1719 - name : Install JDK
1820 uses : actions/setup-java@v5
1921 with :
2022 java-version : ${{ matrix.java-version }}
21- distribution : ' adopt'
23+ distribution : " adopt"
2224 - name : Lint
2325 run : gradle spotlessCheck
2426 - name : Build & Test
Original file line number Diff line number Diff line change @@ -2,23 +2,25 @@ 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"
1416
1517 steps :
1618 - uses : actions/checkout@v5
1719 - name : Install JDK
1820 uses : actions/setup-java@v5
1921 with :
2022 java-version : ${{ matrix.java-version }}
21- distribution : ' adopt'
23+ distribution : " adopt"
2224 - name : Lint
2325 run : mvn --batch-mode spotless:check
2426 - name : Build & Test
You can’t perform that action at this time.
0 commit comments