forked from seregazhuk/php-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
27 lines (24 loc) · 679 Bytes
/
.travis.yml
File metadata and controls
27 lines (24 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
language: php
jobs:
include:
- stage: "PHP7.2 - lowest"
php: 7.2
script:
- composer update -n --prefer-dist --prefer-lowest --no-suggest
- composer dump-autoload
- composer ci:tests
- composer ci:php:psalm
- stage: "PHP7.3 - highest"
php: 7.3
script:
- composer update -n --prefer-dist --no-suggest
- composer dump-autoload
- composer ci:tests
- composer ci:php:psalm
- stage: "PHP7.4 - highest"
php: 7.4
script:
- composer update -n --prefer-dist --no-suggest
- composer dump-autoload
- composer ci:tests
- composer ci:php:psalm