Skip to content
This repository was archived by the owner on Oct 7, 2022. It is now read-only.

Commit 3998168

Browse files
committed
Add Travis checks
1 parent b18d680 commit 3998168

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: php
2+
php:
3+
- 7.2
4+
- 7.3
5+
6+
before_install:
7+
# turn off XDebug
8+
- phpenv config-rm xdebug.ini || return 0
9+
10+
install:
11+
- travis_retry composer install --no-progress --prefer-dist
12+
13+
script:
14+
- vendor/bin/phpstan analyze --level max -c phpstan.neon src --no-interaction --no-progress
15+
16+
sudo: false
17+
18+
cache:
19+
directories:
20+
- $HOME/.composer/cache
21+
- tmp
22+

0 commit comments

Comments
 (0)