File tree 3 files changed +14
-19
lines changed
3 files changed +14
-19
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : false
10
10
matrix :
11
- laravel : [9, 10]
12
- php : ["8.0", 8.1, 8.2, 8.3]
13
- exclude :
14
- - php : " 8.0"
15
- laravel : 10
11
+ laravel : [10]
12
+ php : [8.1, 8.2, 8.3]
16
13
17
14
steps :
18
15
- uses : actions/checkout@v3
19
16
20
17
- name : test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }}
21
18
run : docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }}
22
-
Original file line number Diff line number Diff line change 14
14
"postal/postal" : " ^2.0.1"
15
15
},
16
16
"require-dev" : {
17
- "phpunit/phpunit" : " ^9 .0" ,
18
- "orchestra/testbench" : " ^7.0|^ 8.0" ,
17
+ "phpunit/phpunit" : " ^10 .0" ,
18
+ "orchestra/testbench" : " ^8.0" ,
19
19
"nunomaduro/larastan" : " ^2.0"
20
20
},
21
21
"autoload" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phpunit backupGlobals =" false"
3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3 /phpunit.xsd"
5
- backupStaticAttributes =" false"
4
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5 /phpunit.xsd"
5
+ backupStaticProperties =" false"
6
6
bootstrap =" vendor/autoload.php"
7
7
colors =" true"
8
- convertErrorsToExceptions =" true"
9
- convertNoticesToExceptions =" true"
10
- convertWarningsToExceptions =" true"
11
8
processIsolation =" false"
12
9
stopOnFailure =" false"
13
- >
10
+ >
14
11
<testsuites >
15
12
<testsuite name =" laravel-postal tests" >
16
13
<directory suffix =" Test.php" >./tests/</directory >
24
21
<server name =" MAIL_DRIVER" value =" postal" />
25
22
<server name =" MAIL_MAILER" value =" postal" />
26
23
</php >
27
- <coverage processUncoveredFiles =" true" >
28
- <include >
29
- <directory suffix =" .php" >./src</directory >
30
- </include >
24
+ <!-- <coverage>
31
25
<report>
32
26
<html outputDirectory="coverage-html"/>
33
27
</report>
34
- </coverage >
28
+ </coverage> -->
29
+ <source >
30
+ <include >
31
+ <directory suffix =" .php" >./src</directory >
32
+ </include >
33
+ </source >
35
34
</phpunit >
You can’t perform that action at this time.
0 commit comments