mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-26 14:05:29 +03:00
TravisCI added
This commit is contained in:
parent
db0f6e8033
commit
4e6b3999c2
7
install.sh
Executable file
7
install.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# installing dependencies for lumen-generators
|
||||
composer install --no-interaction
|
||||
|
||||
# installing dependencies for lumen-test
|
||||
cd lumen-test && composer install --no-interaction
|
BIN
lumen-test/codecept.phar
Normal file
BIN
lumen-test/codecept.phar
Normal file
Binary file not shown.
4
test.sh
Executable file
4
test.sh
Executable file
@ -0,0 +1,4 @@
|
||||
# Runing tests for Lumen
|
||||
cd lumen-test
|
||||
wget http://codeception.com/codecept.phar
|
||||
php codecept.phar run
|
18
travis.yml
Normal file
18
travis.yml
Normal file
@ -0,0 +1,18 @@
|
||||
language: php
|
||||
|
||||
php:
|
||||
- 5.4
|
||||
- 5.5
|
||||
- 5.6
|
||||
- 7.0
|
||||
- hhvm
|
||||
|
||||
matrix:
|
||||
allow_failures:
|
||||
- php: 7.0
|
||||
|
||||
sudo: false
|
||||
|
||||
install: ./install.sh
|
||||
|
||||
script: ./test.sh
|
Loading…
Reference in New Issue
Block a user