mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-22 16:54:13 +01:00
25 lines
287 B
YAML
25 lines
287 B
YAML
language: php
|
|
|
|
sudo: false
|
|
|
|
php:
|
|
- 7.0
|
|
- 7.1
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
before_install:
|
|
- composer self-update
|
|
- composer validate
|
|
|
|
install:
|
|
- composer install --prefer-dist --no-interaction
|
|
|
|
script:
|
|
- vendor/bin/phpunit
|