mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
17 lines
352 B
YAML
17 lines
352 B
YAML
before_script:
|
|
- bash .gitlab-ci.sh
|
|
stages:
|
|
- testing
|
|
- staging
|
|
variables:
|
|
MYSQL_DATABASE: default
|
|
MYSQL_USER: default
|
|
MYSQL_PASSWORD: secret
|
|
MYSQL_ROOT_PASSWORD: root
|
|
unitTesting:
|
|
stage: testing
|
|
image: php:7.1.3
|
|
services:
|
|
- mysql:5.7
|
|
script:
|
|
- vendor/bin/phpunit --coverage-text --colors=never --configuration phpunit.xml |