Files
Kanboard-Prod/.travis.yml
2019-11-21 20:07:48 -08:00

33 lines
397 B
YAML

notifications:
email: false
git:
depth: 3
services:
- postgresql
language: php
sudo: false
php:
- 7.3
- 7.2
- 5.6
env:
- DB=sqlite
- DB=postgres
matrix:
fast_finish: true
before_install:
- composer install
- npm install -g jshint
script:
- jshint assets/js/{core,components}
- ./vendor/bin/phpunit -c tests/units.$DB.xml
- ./vendor/bin/phpunit tests/configtest