mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-27 08:28:40 +00:00
12 lines
375 B
YAML
12 lines
375 B
YAML
language: php
|
|
php:
|
|
- '7.2'
|
|
- nightly
|
|
services:
|
|
- mysql
|
|
before_script:
|
|
- mysql -e "use mysql; update user set authentication_string=PASSWORD('123456') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
|
|
- pecl install ast
|
|
- composer install
|
|
script:
|
|
- vendor/bin/phpunit --configuration tests/phpunit_no_coverage.xml |