Skip to content

Commit

Permalink
feature #488 Add "security:check" to our CI checks (javiereguiluz)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Add "security:check" to our CI checks

Commits
-------

9d212ab Add "security:check" to our CI checks
  • Loading branch information
javiereguiluz committed Feb 23, 2017
2 parents 9b486d1 + 9d212ab commit abac25f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Expand Up @@ -24,7 +24,12 @@ install:

script:
- ./vendor/bin/phpunit
# this checks that the source code follows the Symfony Code Syntax rules
- ./vendor/bin/php-cs-fixer fix --diff --dry-run -v
# this checks that the YAML config files contain no syntax errors
- ./bin/console lint:yaml app/config
- ./bin/console lint:yaml @CodeExplorerBundle
# this checks that the Twig template files contain no syntax errors
- ./bin/console lint:twig app/Resources @CodeExplorerBundle
# this checks that the application doesn't use dependencies with known security vulnerabilities
- ./bin/console security:check

0 comments on commit abac25f

Please sign in to comment.