We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e282d9b commit e7f6116Copy full SHA for e7f6116
.github/workflows/coverage.yaml
@@ -31,7 +31,7 @@ jobs:
31
run: mvn -B clean package
32
33
- name: Run tests
34
- run: mvn test
+ run: mvn test jacoco:prepare-agent
35
36
- name: Generate Jacoco coverage report
37
run: mvn jacoco:report -DreportOutputDirectory=${{ github.workspace }}/target/site/jacoco
pom.xml
@@ -178,6 +178,9 @@
178
<goals>
179
<goal>prepare-agent</goal>
180
</goals>
181
+ <configuration>
182
+ <destFile>${project.build.directory}/jacoco.exec</destFile>
183
+ </configuration>
184
</execution>
185
<execution>
186
<id>report</id>
0 commit comments