Skip to content

Commit 385d1e5

Browse files
committed
Fix --format argument
1 parent 617a7d9 commit 385d1e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ runs:
7373
if [ -n "${{ inputs.junit-glob }}" ]; then
7474
JUNIT_GLOB="--junit-glob '${{ inputs.junit-glob }}'"
7575
fi
76-
TESTS=$(java -jar split-tests-java.jar --split-index ${{ inputs.split-index }} --split-total ${{ inputs.split-total }} --glob '${{ inputs.glob }}' ${EXCLUDE_GLOB} ${JUNIT_GLOB} --format {{ inputs.format }} --average-time ${{ inputs.average-time }} --debug ${{ inputs.debug }})
76+
TESTS=$(java -jar split-tests-java.jar --split-index ${{ inputs.split-index }} --split-total ${{ inputs.split-total }} --glob '${{ inputs.glob }}' ${EXCLUDE_GLOB} ${JUNIT_GLOB} --format ${{ inputs.format }} --average-time ${{ inputs.average-time }} --debug ${{ inputs.debug }})
7777
echo "This runner will execute the following tests: $TESTS"
7878
echo "test-suite=${TESTS}" >> $GITHUB_OUTPUT
7979
branding:

0 commit comments

Comments
 (0)