Fix dockerfile

This commit is contained in:
Xbird
2022-03-28 17:34:28 +00:00
parent 470c6d71d4
commit 8f23037589
2 changed files with 14 additions and 2 deletions

View File

@@ -18,24 +18,36 @@ stages:
security-checker:
stage: SecurityChecker
except:
- main
- dev
script:
- local-php-security-checker --path=./composer.lock
allow_failure: false
phpcs:
stage: CodingStandards
except:
- main
- dev
script:
- phpcs --version && phpcs --standard=PSR12 --ignore=./src/Kernel.php ./src
allow_failure: false
phpstan:
stage: CodingStandards
except:
- main
- dev
script:
- phpstan --version && phpstan analyse ./src
allow_failure: false
twig-lint:
stage: CodingStandards
except:
- main
- dev
script:
- twig-lint --version && twig-lint lint ./templates
allow_failure: false