forked from mgrajcarek/uuid-shortener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (35 loc) · 1008 Bytes
/
.travis.yml
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
28
29
30
31
32
33
34
35
36
37
38
language: php
sudo: false
php:
- 7.2
- 7.3
- 7.4
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 7.2
script:
- vendor/bin/psalm
- vendor/bin/phpunit
- vendor/bin/phpbench run
env: dependencies=lowest
- php: 7.3
script:
- vendor/bin/psalm
- vendor/bin/phpunit
- vendor/bin/phpbench run
env: dependencies=lowest
- php: 7.4
script:
- vendor/bin/psalm
- vendor/bin/phpunit
- vendor/bin/phpbench run
env: dependencies=highest
## Update composer and run the appropriate composer command
before_script:
- composer self-update -q
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- composer show -i