Skip to content

Commit 2391257

Browse files
authored
Update .travis.yml
1 parent e779dc6 commit 2391257

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

.travis.yml

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,28 @@
1-
language: php
1+
# TravisCI configuration for php-stubs/generator
2+
3+
language: "php"
4+
os:
5+
- "linux"
6+
dist: "bionic"
27

38
php:
4-
- '7.1'
5-
- '7.2'
6-
- nightly
9+
- "7.3"
10+
- "7.4"
11+
- "nightly"
712

8-
matrix:
13+
jobs:
914
allow_failures:
10-
- php: nightly
15+
- php: "nightly"
16+
17+
cache:
18+
directories:
19+
- "${HOME}/.composer/cache"
20+
21+
before_install:
22+
- "composer validate --strict"
1123

12-
install: composer install
24+
install:
25+
- "composer update"
1326

1427
script:
15-
- vendor/bin/phpunit
16-
- vendor/bin/psalm
28+
- "vendor/bin/phpunit"

0 commit comments

Comments
 (0)