@@ -143,15 +143,15 @@ runs:
143
143
- name : Done report
144
144
if : inputs.parallel-finished == 'true'
145
145
shell : ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
146
- run : >-
146
+ run : |
147
147
if [ ! -f coveralls ]; then
148
148
echo "Coveralls binary not found."
149
149
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
150
150
exit 1
151
- fi \
152
- coveralls done
153
- ${{ inputs.debug == 'true' && '--debug' || '' }}
154
- ${{ inputs.measure == 'true' && '--measure' || '' }}
151
+ fi
152
+ ~/bin/ coveralls done \
153
+ ${{ inputs.debug == 'true' && '--debug' || '' }} \
154
+ ${{ inputs.measure == 'true' && '--measure' || '' }} \
155
155
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }}
156
156
env :
157
157
COVERALLS_DEBUG : ${{ inputs.debug }}
@@ -166,20 +166,20 @@ runs:
166
166
- name : Coverage report
167
167
if : inputs.parallel-finished != 'true'
168
168
shell : ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
169
- run : >-
169
+ run : |
170
170
if [ ! -f coveralls ]; then
171
171
echo "Coveralls binary not found."
172
172
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
173
173
exit 1
174
- fi \
175
- coveralls report
176
- ${{ inputs.debug == 'true' && '--debug' || '' }}
177
- ${{ inputs.measure == 'true' && '--measure' || '' }}
178
- ${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }}
179
- ${{ inputs.allow-empty == 'true' && '--allow-empty' || '' }}
180
- ${{ inputs.base-path && format('--base-path {0}', inputs.base-path) || '' }}
181
- ${{ inputs.format && format('--format {0}', inputs.format) || '' }}
182
- ${{ inputs.file || inputs.path-to-lcov }}
174
+ fi
175
+ ~/bin/ coveralls report \
176
+ ${{ inputs.debug == 'true' && '--debug' || '' }} \
177
+ ${{ inputs.measure == 'true' && '--measure' || '' }} \
178
+ ${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }} \
179
+ ${{ inputs.allow-empty == 'true' && '--allow-empty' || '' }} \
180
+ ${{ inputs.base-path && format('--base-path {0}', inputs.base-path) || '' }} \
181
+ ${{ inputs.format && format('--format {0}', inputs.format) || '' }} \
182
+ ${{ inputs.file || inputs.path-to-lcov }} \
183
183
${{ inputs.files }}
184
184
env :
185
185
COVERALLS_DEBUG : ${{ inputs.debug }}
0 commit comments