From 3bab2e04e9b8fb5edc279f79db5a0639b4412330 Mon Sep 17 00:00:00 2001 From: vringar Date: Sun, 24 Dec 2023 14:07:07 +0100 Subject: [PATCH] fix(action): escape names in shell --- .github/workflows/run-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 34485228c..5972a26c0 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -144,6 +144,6 @@ jobs: uses: dorny/test-reporter@v1 if: success() || failure() # run this step even if previous step failed with: - name: ${{matrix.test-groups}} # Name of the check run which will be created - path: ${{matrix.test-groups}}-report.xml # Path to test results + name: "'${{matrix.test-groups}}'" # Name of the check run which will be created + path: "'${{matrix.test-groups}}-report.xml'" # Path to test results reporter: java-junit # Format of test results