File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 cache : maven
2020 - name : Build with Maven
2121 run : mvn clean verify package
22+ - name : Upload coverage to Codecov
23+ uses : codecov/codecov-action@v5
24+ with :
25+ token : ${{ secrets.CODECOV_TOKEN }}
26+ fail_ci_if_error : true
Original file line number Diff line number Diff line change 8989 <artifactId >maven-surefire-plugin</artifactId >
9090 <version >3.5.4</version >
9191 </plugin >
92+ <plugin >
93+ <groupId >org.jacoco</groupId >
94+ <artifactId >jacoco-maven-plugin</artifactId >
95+ <version >0.8.12</version >
96+ <executions >
97+ <execution >
98+ <goals >
99+ <goal >prepare-agent</goal >
100+ </goals >
101+ </execution >
102+ <execution >
103+ <id >report</id >
104+ <phase >test</phase >
105+ <goals >
106+ <goal >report</goal >
107+ </goals >
108+ </execution >
109+ </executions >
110+ </plugin >
92111 <plugin >
93112 <artifactId >maven-jar-plugin</artifactId >
94113 <version >3.5.0</version >
126145 <plugin >
127146 <artifactId >maven-compiler-plugin</artifactId >
128147 </plugin >
148+ <plugin >
149+ <groupId >org.jacoco</groupId >
150+ <artifactId >jacoco-maven-plugin</artifactId >
151+ </plugin >
129152 </plugins >
130153 </build >
131154</project >
You can’t perform that action at this time.
0 commit comments