File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11# This workflow will build a Java project with Maven
22# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
33
4- name : Java CI with Maven
4+ name : Build and Test Pipeline
55
66on :
77 push :
2121 with :
2222 java-version : ' 17'
2323 distribution : ' adopt'
24+
2425 - name : Build with Maven
25- run : mvn -B package --file pom.xml
26+ run : mvn --batch-mode --update-snapshots test jacoco:report --file pom.xml
27+
28+ - name : 🚀 Coveralls Coverage Report Submission
29+ run : mvn coveralls:report --define repoToken=${{ secrets.COVERALL_REPO_TOKEN }}
Original file line number Diff line number Diff line change 266266 <allowInsecureRegistries >true</allowInsecureRegistries >
267267 </configuration >
268268 </plugin >
269+ <plugin >
270+ <groupId >io.jsonwebtoken.coveralls</groupId >
271+ <artifactId >coveralls-maven-plugin</artifactId >
272+ <version >4.4.1</version >
273+ <dependencies >
274+ <dependency >
275+ <groupId >javax.xml.bind</groupId >
276+ <artifactId >jaxb-api</artifactId >
277+ <version >2.3.1</version >
278+ </dependency >
279+ </dependencies >
280+ </plugin >
269281 </plugins >
270282 </build >
271283</project >
You can’t perform that action at this time.
0 commit comments