File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
phpstan :
9
- runs-on : ubuntu-22 .04
9
+ runs-on : ubuntu-24 .04
10
10
name : PHPStan
11
11
steps :
12
12
- name : Checkout
13
13
uses : actions/checkout@v4
14
14
- name : Run PHPStan
15
- uses : docker://oskarstark/phpstan-ga
15
+ uses : docker://oskarstark/phpstan-ga:1.8.0
16
16
env :
17
17
REQUIRE_DEV : true
18
18
with :
19
19
args : analyse
20
20
cs-fixer :
21
- runs-on : ubuntu-22 .04
21
+ runs-on : ubuntu-24 .04
22
22
name : PHP-CS-Fixer
23
23
steps :
24
24
- name : Checkout
@@ -27,32 +27,33 @@ jobs:
27
27
uses : docker://oskarstark/php-cs-fixer-ga
28
28
29
29
twig-cs-fixer :
30
- runs-on : ubuntu-22 .04
30
+ runs-on : ubuntu-24 .04
31
31
name : Twig-CS-Fixer
32
32
steps :
33
33
- name : Checkout
34
34
uses : actions/checkout@v4
35
35
- name : Require the vendor
36
- run : composer require --dev --no-update vincentlanglet/twig-cs-fixer ^2.11
36
+ run : composer require --dev --no-update vincentlanglet/twig-cs-fixer ^3.4
37
37
- name : Update
38
38
run : composer update --no-interaction --no-progress
39
39
- name : Run
40
40
run : vendor/bin/twig-cs-fixer lint templates
41
41
42
42
tests :
43
- runs-on : ubuntu-22 .04
43
+ runs-on : ubuntu-24 .04
44
44
strategy :
45
45
matrix :
46
46
php :
47
47
- ' 8.1'
48
48
- ' 8.2'
49
49
- ' 8.3'
50
+ - ' 8.4'
50
51
dependency :
51
52
- ' '
52
53
symfony :
53
54
- ' 6.4.*'
54
- - ' 7.0.*'
55
55
- ' 7.1.*'
56
+ - ' 7.2.*'
56
57
include :
57
58
- php : ' 8.1'
58
59
symfony : ' 6.4.*'
62
63
dependency : ' lowest'
63
64
exclude :
64
65
- php : ' 8.1'
65
- symfony : ' 7.0 .*'
66
+ symfony : ' 7.1 .*'
66
67
name : PHPUnit PHP ${{ matrix.php }} ${{ matrix.dependency }} (Symfony ${{ matrix.symfony }})
67
68
steps :
68
69
- name : Checkout
You can’t perform that action at this time.
0 commit comments