Skip to content

Commit 893d0a7

Browse files
authored
Add PHP 7.4 support to testing suite
1 parent 8fb9576 commit 893d0a7

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,22 @@ jobs:
6262
key: source-php7.3-{{ .Branch }}-{{ .Revision }}
6363
paths:
6464
- vendor
65+
php-74:
66+
docker:
67+
- image: circleci/php:7.4
68+
steps:
69+
- checkout
70+
- restore_cache:
71+
keys:
72+
- source-php7.4-{{ .Branch }}-{{ .Revision }}
73+
- source-php7.4-{{ .Branch }}-
74+
- source-php7.4-
75+
- run: composer require phpunit/phpunit
76+
- run: php vendor/phpunit/phpunit/phpunit
77+
- save_cache:
78+
key: source-php7.4-{{ .Branch }}-{{ .Revision }}
79+
paths:
80+
- vendor
6581

6682
workflows:
6783
version: 2
@@ -70,3 +86,4 @@ workflows:
7086
- php-71
7187
- php-72
7288
- php-73
89+
- php-74

0 commit comments

Comments
 (0)