File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 96
96
run : composer update --no-ansi --no-interaction --no-progress
97
97
98
98
- name : Run tests with phpunit
99
- run : XDEBUG_MODE=coverage php ./vendor/bin/phpunit --configuration ./phpunit.xml --coverage-clover=coverage.xml
99
+ run : XDEBUG_MODE=coverage php ./vendor/bin/phpunit --configuration ./phpunit.xml --debug -- coverage-clover=coverage.xml
100
100
101
101
- name : Send code coverage report to Codecov.io
102
102
uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change 44
44
"require-dev" : {
45
45
"php-service-bus/code-style-config" : " v1.3.*" ,
46
46
"phpunit/phpunit" : " v9.5.*" ,
47
- "vimeo/psalm" : " v4.4 .*" ,
47
+ "vimeo/psalm" : " v4.5 .*" ,
48
48
"phpstan/phpstan" : " v0.12.*"
49
49
},
50
50
"prefer-stable" : true ,
51
51
"minimum-stability" : " dev" ,
52
52
"scripts" : {
53
53
"psalm" : " ./vendor/bin/psalm --config=psalm.xml" ,
54
54
"phpstan" : " ./vendor/bin/phpstan analyse src --level 7" ,
55
- "tests" : " ./vendor/bin/phpunit --configuration phpunit.xml --verbose" ,
56
- "coverage" : " ./vendor/bin/phpunit --configuration phpunit.xml --coverage-html ./coverage --verbose" ,
55
+ "tests" : " ./vendor/bin/phpunit --configuration phpunit.xml --debug -- verbose --debug " ,
56
+ "coverage" : " XDEBUG_MODE=coverage ./vendor/bin/phpunit --configuration phpunit.xml --coverage-html ./coverage --debug -- verbose --debug " ,
57
57
"cs-check" : " ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run" ,
58
58
"cs-fix" : " ./vendor/bin/php-cs-fixer fix --allow-risky=yes" ,
59
59
"pre-commit" : " PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --allow-risky=yes && ./vendor/bin/psalm --config=psalm.xml && ./vendor/bin/phpstan analyse src --level 7 && ./vendor/bin/phpunit --configuration phpunit.xml --verbose"
You can’t perform that action at this time.
0 commit comments