File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,12 +144,12 @@ runs:
144
144
if : inputs.parallel-finished == 'true'
145
145
shell : ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
146
146
run : >-
147
- if [ ! -f ~/bin/ coveralls ]; then
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
151
fi
152
- ~/bin/ coveralls done
152
+ coveralls done
153
153
${{ inputs.debug == 'true' && '--debug' || '' }}
154
154
${{ inputs.measure == 'true' && '--measure' || '' }}
155
155
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }}
@@ -167,12 +167,12 @@ runs:
167
167
if : inputs.parallel-finished != 'true'
168
168
shell : ${{ startsWith(runner.os, 'Windows') && 'pwsh' || 'bash' }}
169
169
run : >-
170
- if [ ! -f ~/bin/ coveralls ]; then
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
174
fi
175
- ~/bin/ coveralls report
175
+ coveralls report
176
176
${{ inputs.debug == 'true' && '--debug' || '' }}
177
177
${{ inputs.measure == 'true' && '--measure' || '' }}
178
178
${{ inputs.fail-on-error == 'false' && '--no-fail' || '' }}
You can’t perform that action at this time.
0 commit comments