Remove .travis.yml

This commit is contained in:
Kijin Sung 2021-01-05 23:48:03 +09:00
parent cef7f32901
commit bb9a56bcac
2 changed files with 0 additions and 28 deletions

1
.gitattributes vendored
View file

@ -1,5 +1,4 @@
.gitattributes export-ignore .gitattributes export-ignore
.github export-ignore .github export-ignore
.gitignore export-ignore .gitignore export-ignore
.travis.yml export-ignore
/tests/ export-ignore /tests/ export-ignore

View file

@ -1,27 +0,0 @@
os: linux
dist: xenial
language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
jobs:
allow_failures:
- php:
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci"
- mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost"
- mysql -u root -e "SET PASSWORD FOR travis@localhost = PASSWORD('travis'); FLUSH PRIVILEGES"
- phpenv config-rm xdebug.ini
- wget https://codeception.com/releases/2.3.9/codecept.phar
- php -S localhost:8000 &
script:
- if find . -name "*.php" ! -path "./vendor/*" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v "No syntax errors detected"; then exit 1; fi
- php codecept.phar build
- php codecept.phar run --debug --fail-fast --env travis
notifications:
email: false