Skip to content

Commit

Permalink
skip psecio by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Guite committed Dec 11, 2019
1 parent 241dbb8 commit 8fa31bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Note this is the default port (read explanation for `database_host` above).
**Optional** Comma-separated list of desired analysis tools or `"all"` for all tools.
Can be used to improve performance by skipping unwanted tools.
Ensure that it also contains a comma at the start and the end.
Default value: `",phplint,parallel-lint,lint:container,lint:yaml,lint:twig,phpcs,phpunit-bridge,psecio-parse,security-checker,churn,phploc,phpmetrics,php-coupling-detector,deprecation-detector,"`.
Default value: `",phplint,parallel-lint,lint:container,lint:yaml,lint:twig,phpcs,phpunit-bridge,security-checker,churn,phploc,phpmetrics,php-coupling-detector,deprecation-detector,"`.

Currently supported tools:

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ inputs:
tools:
description: Comma-separated list of desired analysis tools
required: false
default: ',phplint,parallel-lint,lint:container,lint:yaml,lint:twig,phpcs,phpunit-bridge,psecio-parse,security-checker,churn,phploc,phpmetrics,php-coupling-detector,deprecation-detector,'
default: ',phplint,parallel-lint,lint:container,lint:yaml,lint:twig,phpcs,phpunit-bridge,security-checker,churn,phploc,phpmetrics,php-coupling-detector,deprecation-detector,'
create_artifacts:
description: Create artifacts
required: false
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ DB_NAME=${INPUT_DATABASE_NAME:zikula}

TOOLS=${INPUT_TOOLS:default}
if [ "$TOOLS" = "default" ]; then
TOOLS=',phplint,parallel-lint,lint:container,lint:yaml,lint:twig,phpcs,php-cs-fixer,phpunit-bridge,psecio-parse,security-checker,churn,phploc,phpmetrics,php-coupling-detector,deprecation-detector,phpinsights,'
TOOLS=',phplint,parallel-lint,lint:container,lint:yaml,lint:twig,phpcs,php-cs-fixer,phpunit-bridge,security-checker,churn,phploc,phpmetrics,php-coupling-detector,deprecation-detector,phpinsights,'
fi
CREATE_ARTIFACTS=${INPUT_CREATE_ARTIFACTS:false}

Expand Down

0 comments on commit 8fa31bd

Please sign in to comment.