Report PR Test Coverage #230
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Report PR Test Coverage | |
on: | |
workflow_run: | |
workflows: | |
- Maven CI | |
types: | |
- completed | |
permissions: { } | |
jobs: | |
publish: | |
name: Report Coverage | |
runs-on: ubuntu-latest | |
if: |- | |
github.event.workflow_run.event == 'pull_request' | |
&& github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: Download PR test coverage report | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # tag=v4.1.8 | |
with: | |
name: pr-test-coverage-report-java-21 | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Report Coverage to Codacy | |
run: |- | |
bash <(curl -Ls https://coverage.codacy.com/get.sh) report \ | |
--project-token ${{ secrets.CODACY_PROJECT_TOKEN }} \ | |
--commit-uuid ${{ github.event.workflow_run.head_sha }} \ | |
--coverage-reports ./jacoco.xml \ | |
--language Java |