Commit 0ca3adc 1 parent 0cb7959 commit 0ca3adc Copy full SHA for 0ca3adc
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 @@ -71,23 +71,23 @@ jobs:
71
71
echo -e "\033[0;33mExecuting PHP Parallel Lint...\033[0m"
72
72
vendor/bin/parallel-lint --colors --exclude ./lib/ --exclude ./node_modules/ --exclude ./vendor/ --no-progress .
73
73
else
74
- echo -e "\033[PHP Parallel Lint execution skipped.\033[0m"
74
+ echo -e "\033[0;33mPHP Parallel Lint execution skipped.\033[0m"
75
75
fi
76
76
- name : " PHP CodeSniffer"
77
77
run : |
78
78
if [[ -f "vendor/bin/phpcs" && -f ".phpcs.xml" ]]; then
79
79
echo -e "\033[0;33mExecuting PHP CodeSniffer...\033[0m"
80
80
vendor/bin/phpcs
81
81
else
82
- echo -e "\033[PHP CodeSniffer execution skipped.\033[0m"
82
+ echo -e "\033[0;33mPHP CodeSniffer execution skipped.\033[0m"
83
83
fi
84
84
- name : " PHPStan"
85
85
run : |
86
86
if [[ -f "vendor/bin/phpstan" && -f "phpstan.neon" ]]; then
87
87
echo -e "\033[0;33mExecuting PHPStan...\033[0m"
88
88
vendor/bin/phpstan analyze --ansi --memory-limit=2G --no-interaction --no-progress
89
89
else
90
- echo -e "\033[PHPStan execution skipped.\033[0m"
90
+ echo -e "\033[0;33mPHPStan execution skipped.\033[0m"
91
91
fi
92
92
- name : " JS Lint"
93
93
run : |
@@ -125,5 +125,5 @@ jobs:
125
125
echo -e "\033[0;33mExecuting PHPUnit...\033[0m"
126
126
php vendor/bin/phpunit --colors=always
127
127
else
128
- echo -e "\033[PHPUnit execution skipped.\033[0m"
128
+ echo -e "\033[0;33mPHPUnit execution skipped.\033[0m"
129
129
fi
You can’t perform that action at this time.
0 commit comments