mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-03-28 14:56:28 +01:00

Beta versions of maven plugins are omitted from this upgrade. A new version of Tycho brings in an update ECJ which means some of the class files are different, hence the need to bump versions of bundles too. A new calendar year brings an update to Copyrights
28 lines
778 B
YAML
28 lines
778 B
YAML
name: Unit Test Results
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Build and Test"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
unit-test-results:
|
|
name: Unit Test Results
|
|
runs-on: ubuntu-20.04
|
|
if: github.event.workflow_run.conclusion != 'skipped'
|
|
|
|
steps:
|
|
- name: Download Test Report
|
|
uses: dawidd6/action-download-artifact@v7
|
|
with:
|
|
name: test-results
|
|
path: test-results
|
|
workflow: ${{ github.event.workflow.id }}
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
- name: Publish Test Report as GitHub PR Comment
|
|
uses: EnricoMi/publish-unit-test-result-action@v2
|
|
if: always()
|
|
with:
|
|
commit: ${{ github.event.workflow_run.head_sha }}
|
|
junit_files: "test-results/**/*.xml"
|