File tree Expand file tree Collapse file tree 2 files changed +3
-4679
lines changed Expand file tree Collapse file tree 2 files changed +3
-4679
lines changed Original file line number Diff line number Diff line change @@ -18,20 +18,17 @@ php-docker-template: &php-docker-template
18
18
name : validate composer.json
19
19
command : composer validate
20
20
- run :
21
- name : install current dependencies
21
+ name : install dependencies
22
22
command : composer install --no-progress
23
23
- run :
24
- name : run tests with current dependency versions
24
+ name : run tests with highest compatible dependency versions
25
25
command : vendor/bin/phpunit --log-junit ~/phpunit/junit.xml --coverage-text tests
26
26
- store_test_results :
27
27
path : ~/phpunit
28
28
- store_artifacts :
29
29
path : ~/phpunit
30
30
- run :
31
- name : run tests with highest available dependency versions
32
- command : composer update --no-progress && vendor/bin/phpunit tests
33
- - run :
34
- name : run tests with lowest available dependency versions
31
+ name : run tests with lowest compatible dependency versions
35
32
# we skip this for 7.2 because the lowest compatible version of PHPUnit has a bug:
36
33
# https://github.com/sebastianbergmann/comparator/pull/30
37
34
command : |
You can’t perform that action at this time.
0 commit comments