You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+46-3
Original file line number
Diff line number
Diff line change
@@ -49,9 +49,27 @@ The following configuration options are available:
49
49
+`php_extensions` Space-separated list of extensions using [php-build][php-build] e.g. `xdebug mbstring` (default: N/A)
50
50
+`vendored_phpunit_path` The path to a phar file already present on the runner (default: N/A)
51
51
+`configuration` Path to the `phpunit.xml` file (default: `test/phpunit/phpunit.xml`)
52
-
+`log_junit` Path to junit output file (default: `test/phpunit/_junit/junit.xml`)
52
+
+`log_junit` Log test execution in JUnit XML format to file
53
+
+`log_teamcity` Log test execution in TeamCity format to file
54
+
+`testdox_html` Write documentation in HTML format to file
55
+
+`testdox_text` Write documentation in Text format to file
53
56
+`memory_limit` The memory limit to run your tests with (default: `128M`)
54
57
+`bootstrap` The path to the bootstrap file
58
+
+`filter` Filter which tests to run
59
+
+`testsuite` Specify a testsuite to run
60
+
+`group` Only runs tests from the specified group(s)
61
+
+`exclude_group` Exclude tests from the specified group(s)
62
+
+`test_suffix` Only search for test in files with specified suffix(es)
63
+
+`whitelist` Path to directory to whitelist for code coverage analysis
64
+
+`coverage_clover` Generate code coverage report in Clover XML format
65
+
+`coverage_cobertura` Generate code coverage report in Cobertura XML format
66
+
required
67
+
+`coverage_crap4j` Generate code coverage report in Crap4J XML format
68
+
+`coverage_html` Generate code coverage report in HTML format
69
+
+`coverage_php` Export PHP_CodeCoverage object to file
70
+
+`coverage_text` Generate code coverage report in text format (true to output to console, path to output to file)
71
+
+`coverage_xml` Generate code coverage report in PHPUnit XML format
72
+
+`args` Extra arguments to pass to the phpunit binary
55
73
56
74
The syntax for passing in a custom input is the following:
57
75
@@ -66,8 +84,8 @@ jobs:
66
84
- name: PHPUnit tests
67
85
uses: php-actions/phpunit@v3
68
86
with:
69
-
configuration: custom/path/to/phpunit.xml
70
-
memory_limit: 256M
87
+
configuration: "custom/path/to/phpunit.xml"
88
+
memory_limit: "256M"
71
89
```
72
90
73
91
If you require other configurations of phpunit, please request them in the [Github issue tracker][issues]
@@ -85,6 +103,30 @@ Please note the version number specified within your Action configuration must m
85
103
86
104
If you require a specific version that is not compatible with Github Actions for some reason, please make a request in the [Github issue tracker][issues].
87
105
106
+
Coverage
107
+
--------
108
+
109
+
To store the code coverage, use the `coverage_*` input that is appropriate for your needs. Coverage information is made possible by using the xdebug extension, which will be required to be added to the `php_extensions` input to work.
110
+
111
+
Example:
112
+
113
+
```yaml
114
+
jobs:
115
+
unit-tests:
116
+
117
+
...
118
+
119
+
- name: PHPUnit tests
120
+
uses: php-actions/phpunit@v3
121
+
with:
122
+
php_extensions: "xdebug"
123
+
coverage_clover: "coverage/clover.xml"
124
+
```
125
+
126
+
The above example will output coverage information to the terminal. Pass a file path to output to a file.
127
+
128
+
If you want to report coverage information somewhere, please see the [code-coverage] action.
129
+
88
130
Github Actions releases
89
131
-----------------------
90
132
@@ -96,4 +138,5 @@ If you found this repository helpful, please consider [sponsoring the developer]
0 commit comments