Skip to content

Commit

Permalink
fix(action): escape names in shell
Browse files Browse the repository at this point in the history
  • Loading branch information
vringar committed Dec 24, 2023
1 parent c5f4ba8 commit 3bab2e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3bab2e0

Please sign in to comment.