19
19
COMPOSER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
20
20
21
21
- name : Checkout
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
24
24
- name : Install the dependencies
25
25
run : |
41
41
coverage : none
42
42
43
43
- name : Checkout
44
- uses : actions/checkout@v3
44
+ uses : actions/checkout@v4
45
45
46
46
- name : Install the dependencies
47
47
run : |
63
63
coverage : none
64
64
65
65
- name : Checkout
66
- uses : actions/checkout@v3
66
+ uses : actions/checkout@v4
67
67
68
68
- name : Install the dependencies
69
69
run : |
93
93
COMPOSER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
94
94
95
95
- name : Checkout
96
- uses : actions/checkout@v3
96
+ uses : actions/checkout@v4
97
97
98
98
- name : Install the dependencies
99
99
run : composer install --no-interaction --no-progress
@@ -119,7 +119,35 @@ jobs:
119
119
COMPOSER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
120
120
121
121
- name : Checkout
122
- uses : actions/checkout@v3
122
+ uses : actions/checkout@v4
123
+
124
+ - name : Install the dependencies
125
+ run : |
126
+ composer require contao/core-bundle "^4.13"
127
+ composer install --no-interaction --no-progress
128
+
129
+ - name : Run the unit tests
130
+ run : vendor/bin/phpunit --colors=always
131
+
132
+ phpunit_c54 :
133
+ name : PHP ${{ matrix.php }} Contao 5.4
134
+ runs-on : ubuntu-latest
135
+ strategy :
136
+ fail-fast : false
137
+ matrix :
138
+ php : [ 8.1, 8.2, 8.3 ]
139
+ steps :
140
+ - name : Setup PHP
141
+ uses : shivammathur/setup-php@v2
142
+ with :
143
+ php-version : ${{ matrix.php }}
144
+ extensions : dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
145
+ coverage : xdebug
146
+ env :
147
+ COMPOSER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
148
+
149
+ - name : Checkout
150
+ uses : actions/checkout@v4
123
151
124
152
- name : Install the dependencies
125
153
run : |
0 commit comments