File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ GitHub Action to parallelize a PHPUnit test suite over multiple GitHub Action jobs.
2
+
3
+ In comparison to existing PHPUnit parallelization plugins, this action distributes the load over several jobs.
4
+
5
+ Other PHPUnit parallelization plugins are used to run tests in parallel on a single host, to saturate all available CPUs.
6
+
7
+ ## Input Parameters
8
+
9
+ ### ` strategie `
10
+
11
+ Strategy on how to segment the test suite. Supported values are ` groups ` and ` suites ` .
12
+
13
+ ### ` phpunit-path `
14
+
15
+ Path to PHPUnit executable. Default is ` vendor/bin/phpunit ` .
16
+ You may append additional parameters to the command, e.g. ` vendor/bin/phpunit --condfiguration=path/to/phpunit.xml ` .
1
17
2
18
## Example GitHub Actions workflow
3
19
You can’t perform that action at this time.
0 commit comments