mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-02 13:57:33 +00:00
27 lines
353 B
YAML
27 lines
353 B
YAML
name: php-full
|
|
language: php
|
|
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
|