We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80b5d7 commit 4a20638Copy full SHA for 4a20638
.gitlab-ci.yml
@@ -20,12 +20,15 @@ cache:
20
# cache dependencies
21
- composer config -g cache-dir "$(pwd)/.composer-cache"
22
script:
23
- - composer config minimum-stability dev
24
- - composer config prefer-stable true
25
- # test on latest libs
26
- composer update
27
- vendor/bin/phpunit
28
- # test on lowest libs
+
+# lowest version with lowest dependencies
+test-7.2-lowest:
+ extends: .test
29
+ stage: test
30
+ image: php:7.2
31
+ script:
32
- composer update --prefer-lowest
33
34
0 commit comments