From 3626f635492b367a705ebbca1d40dd59297e9db9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B0=D1=82=D0=BE=D0=BB=D0=B8=D0=B9=20=D0=9D?= =?UTF-8?q?=D0=B5=D1=85=D0=B0=D0=B9?= Date: Wed, 20 Apr 2022 00:09:42 +0500 Subject: [PATCH] update .circleci/config.yml --- .circleci/config.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 880abdc..706d640 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ version: 2 jobs: php71: docker: - - image: circleci/php:7.1-cli-node-browsers + - image: cimg/php:7.1 steps: - checkout - run: php -v @@ -14,7 +14,7 @@ jobs: - run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text php72: docker: - - image: circleci/php:7.2-cli-node-browsers + - image: cimg/php:7.2 steps: - checkout - run: php -v @@ -22,7 +22,7 @@ jobs: - run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text php73: docker: - - image: circleci/php:7.3-cli-node-browsers + - image: cimg/php:7.3 steps: - checkout - run: php -v @@ -30,7 +30,7 @@ jobs: - run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text php74: docker: - - image: circleci/php:7.4-cli-node-browsers + - image: cimg/php:7.4 steps: - checkout - run: php -v @@ -38,7 +38,15 @@ jobs: - run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text php80: docker: - - image: circleci/php:8.0-cli-node-browsers + - image: cimg/php:8.0 + steps: + - checkout + - run: php -v + - run: composer install --no-interaction + - run: XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text + php81: + docker: + - image: cimg/php:8.1 steps: - checkout - run: php -v @@ -53,3 +61,4 @@ workflows: - php73 - php74 - php80 + - php81