File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 46
46
with :
47
47
php-version : ' 8.1'
48
48
extensions : intl
49
+ coverage : none
49
50
50
51
- name : Use latest Composer
51
52
run : composer self-update
77
78
run : composer update --ansi --no-interaction
78
79
79
80
- name : Run static analysis
80
- run : vendor/bin/phpstan analyse --xdebug
81
+ run : vendor/bin/phpstan analyse
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ if [ "$FILES" != "" ]; then
25
25
26
26
# Run on whole codebase
27
27
if [ -d /proc/cygdrive ]; then
28
- ./vendor/bin/phpstan analyse --xdebug
28
+ XDEBUG_MODE=off ./vendor/bin/phpstan analyse
29
29
else
30
- php ./vendor/bin/phpstan analyse --xdebug
30
+ XDEBUG_MODE=off php ./vendor/bin/phpstan analyse
31
31
fi
32
32
33
33
if [ $? != 0 ]; then
Original file line number Diff line number Diff line change 77
77
" bash -c \" if [ -f admin/setup.sh ]; then bash admin/setup.sh; fi\" "
78
78
],
79
79
"analyze" : [
80
- " phpstan analyze --xdebug " ,
80
+ " bash -c \" XDEBUG_MODE=off phpstan analyse \" " ,
81
81
" rector process --dry-run"
82
82
],
83
83
"sa" : " @analyze" ,
You can’t perform that action at this time.
0 commit comments