destructr/.gitlab-ci.yml

13 lines
248 B
YAML
Raw Normal View History

2018-08-22 01:44:52 +00:00
image: php:7.1-alpine
2018-08-17 18:29:03 +00:00
before_script:
2018-08-22 01:48:40 +00:00
- apk update
2018-08-22 01:58:24 +00:00
- apk add git
2018-08-22 02:03:11 +00:00
- docker-php-ext-install pdo pdo_mysql
2018-08-22 01:48:40 +00:00
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
2018-08-17 18:29:03 +00:00
2018-08-22 02:03:11 +00:00
test:
2018-08-17 18:29:03 +00:00
script:
2018-08-22 01:58:24 +00:00
- php composer.phar test