Skip to content

Commit af44245

Browse files
author
Greg Bowler
committed
allow configuration of colors arg
closes #72
1 parent 6aaad49 commit af44245

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ inputs:
104104
description: Generate code coverage report in PHPUnit XML format
105105
required: false
106106

107+
colors:
108+
description: Use colors in output ("never", "auto" or "always")
109+
default: auto
110+
107111
args:
108112
description: Extra arguments to pass to the phpunit binary
109113
required: false
@@ -137,6 +141,7 @@ runs:
137141
ACTION_COVERAGE_PHP: ${{ inputs.coverage_php }}
138142
ACTION_COVERAGE_TEXT: ${{ inputs.coverage_text }}
139143
ACTION_COVERAGE_XML: ${{ inputs.coverage_xml }}
144+
ACTION_COLORS: ${{ inputs.colors }}
140145
ACTION_ARGS: ${{ inputs.args }}
141146

142147
id: phpunit_run

phpunit-action.bash

+4-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,10 @@ then
151151
command_string+=(--coverage-xml "$ACTION_COVERAGE_XML")
152152
fi
153153

154-
command_string+=(--colors=always)
154+
if [ -=n "$ACTION_COLORS" ]
155+
then
156+
command_string+=(--colors=$ACTION_COLORS)
157+
fi
155158

156159
if [ -n "$ACTION_ARGS" ]
157160
then

0 commit comments

Comments
 (0)