File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,15 +5,21 @@ on: [push, pull_request]
55jobs :
66 test :
77 runs-on : ubuntu-latest
8+ strategy :
9+ fail-fast : false
10+ matrix :
11+ # Build/test across the JDK range the library supports (Java 8 floor).
12+ java-version : ['8', '11', '17', '21']
13+ name : Test (JDK ${{ matrix.java-version }})
814 steps :
915 - name : Clone Repository
1016 uses : actions/checkout@v6
1117 - uses : actions/setup-java@v5
1218 with :
1319 distribution : ' temurin'
14- java-version : ' 11 '
20+ java-version : ${{ matrix.java-version }}
1521 - name : Test
1622 run : mvn install -Dgpg.skip=true -B -V
1723 env :
1824 TB_KEY : ${{ secrets.TB_KEY }}
19- TB_SECRET : ${{ secrets.TB_SECRET }}
25+ TB_SECRET : ${{ secrets.TB_SECRET }}
Original file line number Diff line number Diff line change 151151 <artifactId >maven-compiler-plugin</artifactId >
152152 <version >3.15.0</version >
153153 <configuration >
154- <source >1.7 </source >
155- <target >1.7 </target >
154+ <source >1.8 </source >
155+ <target >1.8 </target >
156156 </configuration >
157157 </plugin >
158158 <plugin >
You can’t perform that action at this time.
0 commit comments