File tree Expand file tree Collapse file tree 1 file changed +34
-6
lines changed Expand file tree Collapse file tree 1 file changed +34
-6
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
steps :
7
7
- uses : actions/checkout@v2
8
- - &setup-php
8
+ - # &setup-php
9
9
name : Setup PHP with PECL extension
10
10
uses : shivammathur/setup-php@v2
11
11
with :
12
12
php-version : ' 8.0'
13
13
extensions : intl, mbstring
14
14
coverage : xdebug
15
- - &composer-cache
15
+ - # &composer-cache
16
16
name : Cache Composer packages
17
17
id : composer-cache
18
18
uses : actions/cache@v2
28
28
runs-on : ubuntu-latest
29
29
steps :
30
30
- uses : actions/checkout@v2
31
- - *setup-php
32
- - *composer-cache
31
+ - # *setup-php
32
+ name : Setup PHP with PECL extension
33
+ uses : shivammathur/setup-php@v2
34
+ with :
35
+ php-version : ' 8.0'
36
+ extensions : intl, mbstring
37
+ coverage : xdebug
38
+ - # *composer-cache
39
+ name : Cache Composer packages
40
+ id : composer-cache
41
+ uses : actions/cache@v2
42
+ with :
43
+ path : vendor
44
+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.json,') }}
45
+ restore-keys : |
46
+ ${{ runner.os }}-php-
33
47
- name : Run unit test
34
48
id : make-test
35
49
run : make test
38
52
runs-on : ubuntu-latest
39
53
steps :
40
54
- uses : actions/checkout@v2
41
- - *setup-php
42
- - *composer-cache
55
+ - # *setup-php
56
+ name : Setup PHP with PECL extension
57
+ uses : shivammathur/setup-php@v2
58
+ with :
59
+ php-version : ' 8.0'
60
+ extensions : intl, mbstring
61
+ coverage : xdebug
62
+ - # *composer-cache
63
+ name : Cache Composer packages
64
+ id : composer-cache
65
+ uses : actions/cache@v2
66
+ with :
67
+ path : vendor
68
+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.json,') }}
69
+ restore-keys : |
70
+ ${{ runner.os }}-php-
43
71
- name : Code coverage
44
72
run : make coverage
You can’t perform that action at this time.
0 commit comments