File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ # PHP CircleCI 2.0 configuration file
2+ #
3+ # Check https://circleci.com/docs/2.0/language-php/ for more details
4+ #
5+ version : 2
6+ jobs :
7+ php71 :
8+ docker :
9+ - image : circleci/php:7.1-cli-node-browsers
10+ steps :
11+ - checkout
12+ - run : php -v
13+ - run : composer install --no-interaction --prefer-source --no-suggest
14+ - run : php vendor/bin/phpunit --colors=always
15+ php72 :
16+ docker :
17+ - image : circleci/php:7.2-cli-node-browsers
18+ steps :
19+ - checkout
20+ - run : php -v
21+ - run : composer install --no-interaction --prefer-source --no-suggest
22+ - run : php vendor/bin/phpunit --colors=always
23+ php73 :
24+ docker :
25+ - image : circleci/php:7.3-cli-node-browsers
26+ steps :
27+ - checkout
28+ - run : php -v
29+ - run : composer install --no-interaction --prefer-source --no-suggest
30+ - run : php vendor/bin/phpunit --colors=always
31+ php74 :
32+ docker :
33+ - image : circleci/php:7.4-cli-node-browsers
34+ steps :
35+ - checkout
36+ - run : php -v
37+ - run : composer install --no-interaction --prefer-source --no-suggest
38+ - run : php vendor/bin/phpunit --colors=always
39+ php80 :
40+ docker :
41+ - image : circleci/php:8.0-cli-node-browsers
42+ steps :
43+ - checkout
44+ - run : php -v
45+ - run : composer install --no-interaction --prefer-source --no-suggest
46+ - run : php vendor/bin/phpunit --colors=always
47+ workflows :
48+ version : 2
49+ build :
50+ jobs :
51+ - php71
52+ - php72
53+ - php73
54+ - php74
55+ - php80
You can’t perform that action at this time.
0 commit comments