From 08e20d2e7a97006d2aef3c760d8fb6fe876b40e7 Mon Sep 17 00:00:00 2001 From: "R. Eric Wheeler" Date: Tue, 17 May 2022 11:02:08 -0700 Subject: [PATCH] Add test for PHP v8.1 --- .gitlab-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 981c08c..a34ed74 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,6 @@ before_script: - php composer.phar install # Run our tests -# If Xdebug was installed you can generate a coverage report and see code coverage metrics. test:7.4: only: - 1.x @@ -35,3 +34,11 @@ test:8.0: image: php:8.0 script: - vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never +test:8.1 + only: + - 1.x + tags: + - default + image: php:8.1 + script: + - vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never