File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,16 @@ jobs:
24
24
uses : actions/cache@v2
25
25
with :
26
26
path : /tmp/composer-cache
27
- key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
27
+ key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
28
28
- uses : php-actions/composer@v6
29
29
with :
30
30
progress : yes
31
- php_version : 8.0
31
+ php_version : ${{ matrix.php-version }}
32
32
version : 2
33
33
- uses : php-actions/phpunit@v3
34
34
with :
35
35
configuration : phpunit.xml.dist
36
- php_version : 8.0
36
+ php_version : ${{ matrix.php-version }}
37
37
memory_limit : 1024M
38
38
bootstrap : vendor/autoload.php
39
39
Original file line number Diff line number Diff line change 21
21
uses : actions/cache@v2
22
22
with :
23
23
path : /tmp/composer-cache
24
- key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
24
+ key : ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
25
25
- uses : php-actions/composer@v6
26
26
with :
27
27
progress : yes
Original file line number Diff line number Diff line change 1
1
<phpunit colors =" true" verbose =" true"
2
2
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
3
xsi : noNamespaceSchemaLocation =" vendor/phpunit/phpunit/phpunit.xsd"
4
- convertNoticesToExceptions =" true"
5
- convertWarningsToExceptions =" true"
6
- convertErrorsToExceptions =" true"
7
4
convertDeprecationsToExceptions =" true"
8
5
>
9
6
<testsuites >
You can’t perform that action at this time.
0 commit comments