Skip to content

Commit abac25f

Browse files
committed
feature #488 Add "security:check" to our CI checks (javiereguiluz)
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
2 parents 9b486d1 + 9d212ab commit abac25f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ install:
2424

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

0 commit comments

Comments
 (0)