Add travis ci

This commit is contained in:
erickskrauch 2018-08-06 12:27:18 +03:00
parent 59e9994662
commit a7bef227df
No known key found for this signature in database
GPG Key ID: 669339FCBB30EE0E

35
.travis.yml Normal file
View File

@ -0,0 +1,35 @@
language: php
php:
- '7.0'
- '7.1'
- '7.2'
- nightly
cache:
directories:
- vendor
- $HOME/.composer
env:
global:
- DEFAULT_COMPOSER_FLAGS="--optimize-autoloader --no-interaction --no-progress"
before_script:
- composer global show hirak/prestissimo -q || travis_retry composer global require $DEFAULT_COMPOSER_FLAGS hirak/prestissimo
- composer install --no-interaction
stages:
- Static Code Analysis
- Test
jobs:
include:
- stage: Static Code Analysis
php: 7.2
script:
- vendor/bin/php-cs-fixer fix -v --dry-run
- stage: Test
script:
- vendor/bin/phpunit
allow_failures:
- php: nightly