mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
[TASK] Rework gitlab ci dependencies (#109)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
parent
367066ca97
commit
c8d2cf9849
1 changed files with 11 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
stages:
|
||||
- build
|
||||
- code_quality
|
||||
- lint
|
||||
- codestyle
|
||||
- test
|
||||
|
||||
include:
|
||||
|
@ -33,13 +33,6 @@ build-composer-dependencies:
|
|||
- .composer
|
||||
- .Build
|
||||
|
||||
phpcs:
|
||||
stage: code_quality
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
script:
|
||||
- composer ci:php:sniff
|
||||
|
||||
php-lint-php7.2:
|
||||
image: php:7.2
|
||||
stage: lint
|
||||
|
@ -91,6 +84,16 @@ xliff-lint:
|
|||
- xmllint --schema ./xliff-core-1.2-strict.xsd
|
||||
--noout $(find Resources -name '*.xlf')
|
||||
|
||||
phpcs:
|
||||
stage: codestyle
|
||||
needs:
|
||||
- build-composer-dependencies
|
||||
- php-lint-php7.2
|
||||
- php-lint-php7.3
|
||||
- php-lint-php7.4
|
||||
script:
|
||||
- composer ci:php:sniff
|
||||
|
||||
code_quality:
|
||||
before_script: []
|
||||
|
||||
|
|
Loading…
Reference in a new issue