From d6ed6031f690562be5934775f7c837029464c724 Mon Sep 17 00:00:00 2001 From: Dmitry Patsura Date: Mon, 3 Feb 2020 16:38:34 +0300 Subject: [PATCH] Feature(CI): Test under PHP 7.4 --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ce6d3c2..f15ab04 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,6 +29,15 @@ php_7_3: tags: - docker +php_7_4: + stage: test + image: registry.gitlab.com/socialconnect-php/auth:7.4 + script: + - composer install -o + - ./vendor/bin/phpunit -v --debug --no-coverage; + tags: + - docker + phpstan: stage: test image: registry.gitlab.com/socialconnect-php/auth:7.3