File tree 2 files changed +7
-2
lines changed
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:
49
49
+ ` php_version ` The version of PHP to use e.g. ` 7.4 ` (default: latest)
50
50
+ ` php_extensions ` Space-separated list of extensions using [ php-build] [ php-build ] e.g. ` xdebug mbstring ` (default: N/A)
51
51
+ ` 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)
53
53
+ ` configuration ` Configuration file location
54
54
+ ` level ` Level of rule options - the higher, the stricter
55
55
+ ` 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 17
17
18
18
if [ -n " $ACTION_PATH " ]
19
19
then
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
21
26
fi
22
27
23
28
if [ -n " $ACTION_CONFIGURATION " ]
You can’t perform that action at this time.
0 commit comments