Skip to content
Snippets Groups Projects
Commit 4545ddb2 authored by Daniel Hürtgen's avatar Daniel Hürtgen
Browse files

FEATURE: Gitlab ci initialized (including phpunit test)

parent 9c236fef
Branches
Tags
No related merge requests found
stages:
- test
test:5.3: &PHP-UNITTESTING
image: tetraweb/php:5.3
stage: test
variables:
TIMEZONE: "Europe/Berlin"
before_script:
- apt-get update; apt-get install -y zip unzip
- composer install --optimize-autoloader --no-interaction --no-ansi --prefer-dist
script:
- ./vendor/bin/phpunit
test:5.4:
<<: *PHP-UNITTESTING
image: tetraweb/php:5.4
test:5.5:
<<: *PHP-UNITTESTING
image: tetraweb/php:5.5
test:5.6:
<<: *PHP-UNITTESTING
image: tetraweb/php:5.6
test:7.0:
<<: *PHP-UNITTESTING
image: tetraweb/php:7.0
test:7.1:
<<: *PHP-UNITTESTING
image: tetraweb/php:7.1
test:latest:
<<: *PHP-UNITTESTING
image: tetraweb/php:latest
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment