File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ The following configuration options are available:
4949+ ` php_version ` The version of PHP to use e.g. ` 7.4 ` (default: latest)
5050+ ` php_extensions ` Space-separated list of extensions using [ php-build] [ php-build ] e.g. ` xdebug mbstring ` (default: N/A)
5151+ ` command ` The command to run e.g. ` list ` or ` worker ` (default: analyse)
52- + ` path ` Path(s) with source code to run analysis on (required)
52+ + ` path ` Path(s) with source code to run analysis on, space-separated (required)
5353+ ` configuration ` Configuration file location
5454+ ` level ` Level of rule options - the higher, the stricter
5555+ ` paths_file ` Path to a file with a list of paths to run analysis on
Original file line number Diff line number Diff line change 1717
1818if [ -n " $ACTION_PATH " ]
1919then
20- command_string+=(" $ACTION_PATH " )
20+ IFS=" "
21+ read -r -a splitIFS <<< " $ACTION_PATH"
22+ for path in " ${splitIFS[@]} "
23+ do
24+ command_string+=(" $path " )
25+ done
2126fi
2227
2328if [ -n " $ACTION_CONFIGURATION " ]
You can’t perform that action at this time.
0 commit comments