mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-21 13:24:27 +00:00
20 lines
405 B
YAML
20 lines
405 B
YAML
before_script:
|
|
- bash .gitlab-ci.sh
|
|
stages:
|
|
- testing
|
|
- staging
|
|
variables:
|
|
DB_HOST: mysql
|
|
DB_PORT: 3306
|
|
MYSQL_DATABASE: default
|
|
MYSQL_USER: default
|
|
MYSQL_PASSWORD: secret
|
|
MYSQL_ROOT_PASSWORD: root
|
|
unitTesting:
|
|
stage: testing
|
|
image: php:7.2.6
|
|
services:
|
|
- mysql:5.7
|
|
script:
|
|
- vendor/bin/phpunit --coverage-text --colors=never --configuration phpunit.xml
|