From 9d212ab40c1aed5d2f366f61708fee460a26606f Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 22 Feb 2017 11:12:49 +0100 Subject: [PATCH] Add "security:check" to our CI checks --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 053436c36..fa63492b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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