Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
update .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Анатолий Нехай committed Apr 19, 2022
1 parent 8308346 commit 3626f63
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .circleci/config.yml
Expand Up @@ -6,39 +6,47 @@ version: 2
jobs:
php71:
docker:
- image: circleci/php:7.1-cli-node-browsers
- image: cimg/php:7.1
steps:
- checkout
- run: php -v
- run: composer install --no-interaction
- 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
- run: composer install --no-interaction
- 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
- run: composer install --no-interaction
- 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
- run: composer install --no-interaction
- 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
Expand All @@ -53,3 +61,4 @@ workflows:
- php73
- php74
- php80
- php81

0 comments on commit 3626f63

Please sign in to comment.