From 4ff382626c37f94dbc5c55ef3995df419d54cf7d Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Wed, 4 Jan 2017 18:41:21 +0100 Subject: [PATCH] gitlab-ci: run PHP CodeSniffer tests fixes #13893 --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c3c8035..e47d1b2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,14 @@ stages: +- Coding Standards - Unit-Tests +PSR2 CS Test: + stage: Coding Standards + tags: + - xenial + script: + - phpcs -p --standard=PSR2 --extensions=php --encoding=utf-8 -w -s library/Businessprocess/ application/ configuration.php run.php test + Xenial: stage: Unit-Tests tags: