Publish Code Coverage Results #584
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: Publish Code Coverage Results | |
on: | |
workflow_run: | |
workflows: ["Receive Pull Request"] | |
types: | |
- completed | |
jobs: | |
publish-test-results: | |
name: Publish Code Coverage Results | |
runs-on: ubuntu-latest | |
# the build-and-test job might be skipped, we don't need to run this job then | |
if: > | |
${{ github.event.workflow_run.event == 'pull_request' && | |
( github.event.workflow_run.conclusion == 'success' || | |
github.event.workflow_run.conclusion == 'failure' ) }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.workflow_run.head_branch }} | |
- name: 'Download artifact' | |
uses: actions/[email protected] | |
with: | |
script: | | |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: ${{github.event.workflow_run.id }}, | |
}); | |
var matchArtifact = artifacts.data.artifacts.filter((artifact) => { | |
return artifact.name == "coverage-reports" | |
})[0]; | |
var download = await github.rest.actions.downloadArtifact({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
artifact_id: matchArtifact.id, | |
archive_format: 'zip', | |
}); | |
var fs = require('fs'); | |
fs.writeFileSync('${{github.workspace}}/coverage-reports.zip', Buffer.from(download.data)); | |
- run: | | |
unzip coverage-reports.zip | |
rm coverage-reports.zip | |
- name: Set Coverage Report Paths | |
id: coverage-paths | |
run: | | |
readarray -d '' coveragePathArray < <(find . -name "coverage.cobertura.xml" -print0) | |
coveragePaths=$(printf ",%s" "${coveragePathArray[@]}") | |
echo "::set-output name=COVERAGE_REPORT_PATHS::$coveragePaths" | |
- name: Publish Code Coverage Results | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: ${{ steps.coverage-paths.outputs.COVERAGE_REPORT_PATHS }} |