mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
25 lines
470 B
YAML
25 lines
470 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
|
|
before_install:
|
|
- sudo apt-get install locales
|
|
- sed -i 's/^# de_DE/de_DE/g; \
|
|
s/^# es_ES/es_ES/g; \
|
|
s/^# en_GB/en_GB/g; \
|
|
s/^# en_US/en_US/g; \
|
|
s/^# fr_FR/fr_FR/g; \
|
|
s/^# it_IT/it_IT/g; \
|
|
s/^# pl_PL/pl_PL/g; \
|
|
s/^# ru_RU/ru_RU/g;' /etc/locale.gen \
|
|
&& locale-gen
|
|
|
|
install:
|
|
- composer install
|
|
|
|
script:
|
|
- php ./vendor/bin/phpunit
|