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 3348afb commit d05e75aCopy full SHA for d05e75a
tests/run.sh
@@ -2,12 +2,17 @@
2
3
set -x
4
5
+errors=()
6
+
7
if [[ "${CI}" == "true" ]]; then
8
composer self-update
9
composer install --prefer-source --no-interaction
10
+ if [[ "${?}" -ne 0 ]]; then
11
+ echo "Error: composer install failed"
12
+ errors+=("composer install failed")
13
+ fi
14
fi
15
-
16
# Use composer's phpunit and phpcs by adding composer bin directory to the path environment variable.
17
export PATH="${PWD}/vendor/bin:${PATH}"
18
@@ -21,8 +26,6 @@ echo "CI_PHP_FUTURE_RELEASE: ${CI_PHP_FUTURE_RELEASE}"
21
26
php -r "var_dump(phpversion());"
22
27
php -r "var_dump(curl_version());"
23
28
24
-errors=()
25
29
source "run_syntax_check.sh"
30
31
source "run_coding_standards_check.sh"
0 commit comments