File tree 3 files changed +261
-79
lines changed
3 files changed +261
-79
lines changed Original file line number Diff line number Diff line change
1
+ name : CI-coverage
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build-test :
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+
12
+ - uses : php-actions/composer@v5
13
+
14
+ - name : PHPUnit Tests
15
+ uses : php-actions/phpunit@v2
16
+ with :
17
+ php_extensions : xdebug
18
+ bootstrap : vendor/autoload.php
19
+ configuration : test/phpunit.xml
20
+ args : --coverage-text
21
+ env :
22
+ XDEBUG_MODE : coverage
Original file line number Diff line number Diff line change 3
3
"description" : " Example project using php-actions/phpunit" ,
4
4
5
5
"require-dev" : {
6
- "ext-bcmath" : " *" ,
7
6
"ext-curl" : " *" ,
8
7
"ext-dom" : " *" ,
9
- "ext-gd" : " *" ,
10
- "ext-intl" : " *" ,
11
8
"ext-json" : " *" ,
12
- "ext-pdo" : " *" ,
13
- "ext-pdo_mysql" : " *" ,
14
9
"ext-sqlite3" : " *" ,
15
- "ext-zip" : " *" ,
16
10
"phpunit/phpunit" : " 9.*"
17
11
},
18
12
"autoload" : {
25
19
"App\\ Test\\ " : " test"
26
20
}
27
21
}
28
- }
22
+ }
You can’t perform that action at this time.
0 commit comments