From 518874d01db64233d453bea1423f09793d38ccb5 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 11:40:25 +0100 Subject: [PATCH] Add Spell Check summary to reusable workflow (#950) (#952) Signed-off-by: Miguel Company (cherry picked from commit 96bc828e3ef66ebc68851d4beb4a4e2155a7889d) Co-authored-by: Miguel Company --- .github/workflows/reusable-ubuntu-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/reusable-ubuntu-ci.yml b/.github/workflows/reusable-ubuntu-ci.yml index 06a31340e..b719f3ae2 100644 --- a/.github/workflows/reusable-ubuntu-ci.yml +++ b/.github/workflows/reusable-ubuntu-ci.yml @@ -189,6 +189,10 @@ jobs: workspace_dependencies: '' test_report_artifact: ${{ format('test_report_{0}_{1}_{2}', inputs.label, github.job, join(matrix.*, '_')) }} + - name: Spelling check summary + if: ${{ !cancelled() && inputs.run-tests == true }} + run: find build -type f -iname "*.spelling" -exec cat {} \; + - name: Fast DDS Docs test summary uses: eProsima/eProsima-CI/multiplatform/junit_summary@v0 if: ${{ !cancelled() && inputs.run-tests == true }}