We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43f469a commit 2da0cc6Copy full SHA for 2da0cc6
1 file changed
.github/workflows/maven-verify.yml
@@ -30,3 +30,21 @@ jobs:
30
cache: maven
31
- name: Build with Maven
32
run: mvn -B verify --file memex/pom.xml
33
+
34
+ - name: Archive Jacoco reports
35
+ uses: actions/upload-artifact@v4
36
+ with:
37
+ name: jacoco-reports
38
+ path: ${{ github.workspace }}/memex/target/site/jacoco
39
40
+ - name: JaCoCo Report
41
+ uses: Madrapps/jacoco-report@v1.7.2
42
43
+ # Comma separated paths of the generated jacoco xml files (supports wildcard glob pattern)
44
+ paths: |
45
+ ${{ github.workspace }}/memex/target/site/jacoco/jacoco.xml
46
+ # Github personal token to add comments to Pull Request
47
+ token: ${{ secrets.GITHUB_TOKEN }}
48
+ title: '# Java Code Coverage Report'
49
50
0 commit comments