File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change 34
34
- name : Validate composer.json and composer.lock
35
35
run : composer validate --strict
36
36
37
- - name : Cache Composer packages
38
- id : composer-cache
39
- uses : actions/cache@v2
40
- with :
41
- path : vendor
42
- key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
43
- restore-keys : |
44
- ${{ runner.os }}-php-
45
-
46
37
- name : Install dependencies
47
38
run : composer install --prefer-dist --no-progress
48
39
67
58
php-version : ['8.1', '8.2', '8.3']
68
59
69
60
steps :
61
+ - uses : actions/checkout@v4
62
+
63
+ - name : Setup PHP
64
+ uses : shivammathur/setup-php@v2
65
+ with :
66
+ php-version : ${{ matrix.php-version }}
67
+ coverage : xdebug
68
+ extensions : dom
69
+
70
+ - name : Install dependencies
71
+ run : composer install --prefer-dist --no-progress
72
+
70
73
- name : Run test suite
71
74
run : |
72
75
if [[ ${{ matrix.php-version }} == '8.1' ]]; then
You can’t perform that action at this time.
0 commit comments