@@ -25,10 +25,10 @@ jobs:
25
25
uses : shivammathur/setup-php@v2
26
26
with :
27
27
coverage : none
28
- php-version : 8.2
28
+ php-version : 8.3
29
29
30
30
- name : " Install Dependencies with Composer"
31
- uses : ramsey/composer-install@v2
31
+ uses : ramsey/composer-install@v3
32
32
33
33
- name : " Run PHPStan"
34
34
run : |
@@ -46,11 +46,11 @@ jobs:
46
46
uses : shivammathur/setup-php@v2
47
47
with :
48
48
coverage : none
49
- php-version : 8.1
49
+ php-version : 8.3
50
50
tools : cs2pr
51
51
52
52
- name : " Install Dependencies with Composer"
53
- uses : ramsey/composer-install@v2
53
+ uses : ramsey/composer-install@v3
54
54
55
55
- name : " Run PHP-CS-Fixer"
56
56
run : vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle | cs2pr
@@ -81,15 +81,15 @@ jobs:
81
81
tools : flex
82
82
83
83
- name : " Install Dependencies with Composer"
84
- uses : " ramsey/composer-install@v2 "
84
+ uses : ramsey/composer-install@v3
85
85
env :
86
86
SYMFONY_REQUIRE : ${{ matrix.symfony-version }}
87
87
with :
88
88
composer-options : " --optimize-autoloader"
89
89
90
90
- name : " Run tests with PHPUnit"
91
- env :
92
- SYMFONY_DEPRECATIONS_HELPER : ' max[self]=2'
91
+ # env:
92
+ # SYMFONY_DEPRECATIONS_HELPER: 'max[self]=2'
93
93
run : vendor/bin/simple-phpunit
94
94
95
95
codecov :
@@ -103,10 +103,10 @@ jobs:
103
103
uses : shivammathur/setup-php@v2
104
104
with :
105
105
coverage : pcov
106
- php-version : 8.2
106
+ php-version : 8.3
107
107
108
108
- name : " Install Dependencies with Composer"
109
- uses : ramsey/composer-install@v2
109
+ uses : ramsey/composer-install@v3
110
110
111
111
- name : " Run tests with PHPUnit and collect coverage"
112
112
run : php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude="~vendor~" vendor/bin/simple-phpunit --colors=always --coverage-text -vvv
0 commit comments