File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ inputs:
104
104
description : Generate code coverage report in PHPUnit XML format
105
105
required : false
106
106
107
+ colors :
108
+ description : Use colors in output ("never", "auto" or "always")
109
+ default : auto
110
+
107
111
args :
108
112
description : Extra arguments to pass to the phpunit binary
109
113
required : false
@@ -137,6 +141,7 @@ runs:
137
141
ACTION_COVERAGE_PHP : ${{ inputs.coverage_php }}
138
142
ACTION_COVERAGE_TEXT : ${{ inputs.coverage_text }}
139
143
ACTION_COVERAGE_XML : ${{ inputs.coverage_xml }}
144
+ ACTION_COLORS : ${{ inputs.colors }}
140
145
ACTION_ARGS : ${{ inputs.args }}
141
146
142
147
id : phpunit_run
Original file line number Diff line number Diff line change @@ -151,7 +151,10 @@ then
151
151
command_string+=(--coverage-xml " $ACTION_COVERAGE_XML " )
152
152
fi
153
153
154
- command_string+=(--colors=always)
154
+ if [ -= n " $ACTION_COLORS " ]
155
+ then
156
+ command_string+=(--colors=$ACTION_COLORS )
157
+ fi
155
158
156
159
if [ -n " $ACTION_ARGS " ]
157
160
then
You can’t perform that action at this time.
0 commit comments