forked from mystiq/dex
26 lines
452 B
YAML
26 lines
452 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.2
|
||
|
- 1.3
|
||
|
- 1.4
|
||
|
- tip
|
||
|
|
||
|
services:
|
||
|
- mysql
|
||
|
|
||
|
before_install:
|
||
|
- mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot
|
||
|
- psql -c "CREATE DATABASE test;" -U postgres
|
||
|
|
||
|
install:
|
||
|
- go get -t ./...
|
||
|
- go install ./...
|
||
|
|
||
|
script:
|
||
|
- go test -v ./...
|
||
|
- bash test-integration/postgres.sh
|
||
|
- bash test-integration/mysql.sh
|
||
|
- bash test-integration/mysql-flag.sh
|
||
|
- bash test-integration/sqlite.sh
|