File tree 4 files changed +474
-317
lines changed
4 files changed +474
-317
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- test_php71 :
4
- docker :
5
- - image : circleci/php:7.1
6
- - image : systemli/etherpad-lite:1.7.5
7
- steps :
8
- - checkout
9
- - run : sudo composer self-update
10
- - restore_cache :
11
- keys :
12
- - composer-php71-{{ checksum "composer.lock" }}
13
- - run : composer install
14
- - save_cache :
15
- key : composer-php71-{{ checksum "composer.lock" }}
16
- paths :
17
- - vendor
18
- - run :
19
- name : Running PHPUnit
20
- command : vendor/bin/phpunit
21
- - run :
22
- name : Wait for Etherpad
23
- command : dockerize -wait http://localhost:9001 -timeout 1m
24
- - run :
25
- name : Running Behat
26
- command : vendor/bin/behat -f progress
27
3
test_php72 :
28
4
docker :
29
5
- image : circleci/php:7.2
@@ -76,6 +52,5 @@ workflows:
76
52
version : 2
77
53
build_and_test :
78
54
jobs :
79
- - test_php71
80
55
- test_php72
81
56
- test_php73
Original file line number Diff line number Diff line change 12
12
"psr-4" : { "" : " src/" }
13
13
},
14
14
"require" : {
15
- "php" : " ^7.1|^7.2 |^7.3" ,
16
- "guzzlehttp/guzzle" : " ~6.3 "
15
+ "php" : " ^7.2.5 |^7.3" ,
16
+ "guzzlehttp/guzzle" : " ~6.4 "
17
17
},
18
18
"require-dev" : {
19
19
"phpunit/phpunit" : " ~7.5" ,
You can’t perform that action at this time.
0 commit comments