We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43f469a commit 5bf884bCopy full SHA for 5bf884b
1 file changed
.github/workflows/maven-verify.yml
@@ -30,3 +30,13 @@ jobs:
30
cache: maven
31
- name: Build with Maven
32
run: mvn -B verify --file memex/pom.xml
33
+
34
+ - name: JaCoCo Report
35
+ uses: Madrapps/jacoco-report@v1.7.2
36
+ with:
37
+ # Comma separated paths of the generated jacoco xml files (supports wildcard glob pattern)
38
+ paths: |
39
+ ${{ github.workspace }}/memex/target/site/jacoco/jacoco.xml
40
+ # Github personal token to add comments to Pull Request
41
+ token: ${{ secrets.GITHUB_TOKEN }}
42
0 commit comments