add .travis.yml
This commit is contained in:
parent
6bb711bc52
commit
aac8e50559
2 changed files with 20 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -7,7 +7,6 @@
|
|||
.idea/*
|
||||
/.idea
|
||||
/.idea/*
|
||||
.travis.yml
|
||||
|
||||
|
||||
/vendor/
|
||||
|
|
20
.travis.yml
Normal file
20
.travis.yml
Normal file
|
@ -0,0 +1,20 @@
|
|||
language: php
|
||||
|
||||
sudo: false
|
||||
|
||||
php:
|
||||
- 7.1
|
||||
- 7.2
|
||||
|
||||
env:
|
||||
global:
|
||||
- DB_BITRIX_HOST=localhost
|
||||
- DB_BITRIX_LOGIN=root
|
||||
- DB_BITRIX_PASS=root
|
||||
- DB_BITRIX_NAME=bitrix
|
||||
|
||||
before_script:
|
||||
- bash tests/bin/before_script.sh
|
||||
|
||||
script:
|
||||
- make test
|
Loading…
Add table
Reference in a new issue