mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-09 00:25:01 +00:00
26 lines
339 B
YAML
26 lines
339 B
YAML
|
name: php-full
|
||
|
type: drupal
|
||
|
|
||
|
dockerfile:
|
||
|
stages:
|
||
|
build:
|
||
|
extends: base
|
||
|
packages:
|
||
|
- git
|
||
|
- unzip
|
||
|
commands:
|
||
|
- composer install
|
||
|
|
||
|
test:
|
||
|
extends: base
|
||
|
commands:
|
||
|
- phpunit --testdox
|
||
|
|
||
|
php:
|
||
|
version: 8.1-cli-bullseye
|
||
|
phpstan:
|
||
|
level: 7
|
||
|
paths:
|
||
|
- app
|
||
|
- src
|