From d2700af9e6e30a694cc31413eeda647f0ae3ce69 Mon Sep 17 00:00:00 2001 From: "R. Eric Wheeler" Date: Thu, 21 Jan 2021 19:33:50 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55b52cf..ed42970 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,20 +22,24 @@ variables: # Run our tests # If Xdebug was installed you can generate a coverage report and see code coverage metrics. test:7.3: + image: php:7.3 - branches: - - 0.x + only: + branches: + - 0.x script: - vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-text --colors=never test:7.4: image: php:7.4 - branches: - - 0.x + only: + branches: + - 0.x script: - vendor/bin/phpunit --configuration phpunit.xml.dist --coverage-text --colors=never test:8.0: image: php:8.0 - branches: + only: + branches: - 0.x - 1.x - master