21 lines
337 B
YAML
21 lines
337 B
YAML
before_script:
|
|
- apk add --no-cache make wget git
|
|
- make install-composer
|
|
- make install
|
|
|
|
stages:
|
|
- test
|
|
|
|
test:5.6:
|
|
image: php:5.6-alpine
|
|
stage: test
|
|
script:
|
|
- ./vendor/bin/phpunit
|
|
|
|
test:7.0:
|
|
image: php:7.0-alpine
|
|
stage: test
|
|
script:
|
|
- ./vendor/bin/phpunit
|
|
|
|
# Further stages, and jobs e.g. linting, cgl, etc.
|