Skip to content

Commit 56b0e68

Browse files
author
Masiukevich Maksim
committed
update ci
1 parent 4545802 commit 56b0e68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: composer update --no-ansi --no-interaction --no-progress
6262

6363
- name: Run phpstan/phpstan
64-
run: ./vendor/bin/phpstan analyse src --level 7
64+
run: rm -rf ~/.cache/psalm/ && ./vendor/bin/phpstan analyse src --level 7
6565

6666
phpunit:
6767
name: PHPUnit

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
"require-dev": {
4545
"php-service-bus/code-style-config": "v1.3.*",
4646
"phpunit/phpunit": "v9.5.*",
47-
"vimeo/psalm": "v4.5.*",
47+
"vimeo/psalm": "v4.6.*",
4848
"phpstan/phpstan": "v0.12.*"
4949
},
5050
"prefer-stable": true,
5151
"minimum-stability": "dev",
5252
"scripts": {
53-
"psalm": "./vendor/bin/psalm --config=psalm.xml",
53+
"psalm": "rm -rf ~/.cache/psalm/ && ./vendor/bin/psalm --config=psalm.xml",
5454
"phpstan": "./vendor/bin/phpstan analyse src --level 7",
5555
"tests": "./vendor/bin/phpunit --configuration phpunit.xml --debug --verbose --debug",
5656
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --configuration phpunit.xml --coverage-html ./coverage --debug --verbose --debug",

0 commit comments

Comments
 (0)