mirror of
https://github.com/danog/amp.git
synced 2025-01-22 05:11:42 +01:00
26 lines
337 B
YAML
26 lines
337 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- nightly
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: nightly
|
|
fast_finish: true
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
install:
|
|
- composer install
|
|
- composer show -t
|
|
|
|
script:
|
|
- php vendor/bin/parallel-lint --exclude vendor .
|
|
- php vendor/bin/phpunit --coverage-text
|