We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f895d61 commit 4b70d79Copy full SHA for 4b70d79
phpunit-action.bash
@@ -13,15 +13,17 @@ then
13
phar_url="${phar_url}-${ACTION_VERSION}"
14
fi
15
phar_url="${phar_url}.phar"
16
+ echo "output_log=Using phar url $phar_url"
17
curl --silent -H "User-agent: cURL (https://github.com/php-actions)" -L "$phar_url" > "${github_action_path}/phpunit.phar"
18
19
phar_path="${github_action_path}/phpunit.phar"
20
else
21
phar_path="${GITHUB_WORKSPACE}/$ACTION_PHPUNIT_PATH"
- echo "output_log=Using vendored phpunit: $phar_path"
22
+ echo "output_log=Using vendored phpunit"
23
24
-chmod +x "${github_action_path}/phpunit.phar"
25
+echo "output_log=phar_path=$phar_path"
26
+chmod +x $phar_path
27
command_string=("phpunit")
28
29
if [ -n "$ACTION_CONFIGURATION" ]
0 commit comments