Skip to content

Commit 24abcf4

Browse files
author
Masiukevich Maksim
committed
update ci
1 parent e44592c commit 24abcf4

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
@@ -41,7 +41,7 @@ jobs:
4141
run: composer update --no-ansi --no-interaction --no-progress
4242

4343
- name: Run vimeo/psalm
44-
run: ./vendor/bin/psalm --config=psalm.xml --shepherd
44+
run: rm -rf ~/.cache/psalm/ && ./vendor/bin/psalm --config=psalm.xml --shepherd
4545

4646
phpstan:
4747
name: PHPStan

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
"require-dev": {
3636
"php-service-bus/code-style-config": "v1.3.*",
3737
"phpunit/phpunit": "v9.5.*",
38-
"vimeo/psalm": "v4.5.*",
38+
"vimeo/psalm": "v4.6.*",
3939
"phpstan/phpstan": "v0.12.*"
4040
},
4141
"prefer-stable": true,
4242
"minimum-stability": "dev",
4343
"scripts": {
44-
"psalm": "./vendor/bin/psalm --config=psalm.xml",
44+
"psalm": "rm -rf ~/.cache/psalm/ && ./vendor/bin/psalm --config=psalm.xml",
4545
"phpstan": "./vendor/bin/phpstan analyse src --level 7",
4646
"tests": "./vendor/bin/phpunit --configuration phpunit.xml --debug --verbose --debug",
4747
"coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --configuration phpunit.xml --coverage-html ./coverage --debug --verbose --debug",

0 commit comments

Comments
 (0)