Skip to content

Commit 655d880

Browse files
authoredOct 6, 2024··
Update build workflow to upload JaCoCo code coverage report to https://codacy.com (#54)
Signed-off-by: Manoel Campos <manoelcampos@gmail.com>
1 parent bd434e1 commit 655d880

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ jobs:
2727
cache: maven
2828
- name: Build with Maven
2929
run: mvn clean package jacoco:report
30+
- name: Codacy coverage report upload
31+
env:
32+
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
33+
run: |
34+
test -z $CODACY_PROJECT_TOKEN || bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r target/site/jacoco/jacoco.xml

0 commit comments

Comments
 (0)
Please sign in to comment.