diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c87585e..66c2f9f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,6 +38,16 @@ test:7.2: paths: - vendor/ +test:7.3: + stage: test + image: php:7.3 + script: + - vendor/bin/phpunit -c test/phpunit.xml --coverage-text + cache: + key: "$CI_BUILD_REF_$CI_BUILD_REF_NAME" + paths: + - vendor/ + release: stage: deploy image: php:7.2 diff --git a/.travis.yml b/.travis.yml index 06efada..4930ba4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,8 @@ language: php php: - 7.1 - - 7 + - 7.2 + - 7.3 script: - php vendor/bin/phpunit -v -c test/phpunit.xml --coverage-text