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 e779dc6 commit 2391257Copy full SHA for 2391257
.travis.yml
@@ -1,16 +1,28 @@
1
-language: php
+# TravisCI configuration for php-stubs/generator
2
+
3
+language: "php"
4
+os:
5
+ - "linux"
6
+dist: "bionic"
7
8
php:
- - '7.1'
- - '7.2'
- - nightly
9
+ - "7.3"
10
+ - "7.4"
11
+ - "nightly"
12
-matrix:
13
+jobs:
14
allow_failures:
- - php: nightly
15
+ - php: "nightly"
16
17
+cache:
18
+ directories:
19
+ - "${HOME}/.composer/cache"
20
21
+before_install:
22
+ - "composer validate --strict"
23
-install: composer install
24
+install:
25
+ - "composer update"
26
27
script:
- - vendor/bin/phpunit
- - vendor/bin/psalm
28
+ - "vendor/bin/phpunit"
0 commit comments