We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5391fda commit 8cfe89fCopy full SHA for 8cfe89f
2 files changed
.github/workflows/coverage.yml
@@ -8,7 +8,7 @@ jobs:
8
uses: actions/checkout@v4
9
10
- name: Run tests and collect coverage
11
- run: mvn -B test
+ run: mvn -B test jacoco:report
12
13
- name: Upload coverage to Codecov
14
uses: codecov/codecov-action@v5
pom.xml
@@ -112,6 +112,26 @@
112
</executions>
113
</plugin>
114
115
+ <plugin>
116
+ <groupId>org.jacoco</groupId>
117
+ <artifactId>jacoco-maven-plugin</artifactId>
118
+ <version>0.8.10</version>
119
+ <executions>
120
+ <execution>
121
+ <goals>
122
+ <goal>prepare-agent</goal>
123
+ </goals>
124
+ </execution>
125
126
+ <id>report</id>
127
+ <phase>test</phase>
128
129
+ <goal>report</goal>
130
131
132
+ </executions>
133
+ </plugin>
134
+
135
</plugins>
136
</build>
137
0 commit comments