Update go-jet to support CircleCi build.

This commit is contained in:
go-jet 2019-06-21 16:16:57 +02:00
parent 17f6bab2e7
commit 454cd6f12b
16 changed files with 297 additions and 251 deletions

View file

@ -9,6 +9,8 @@ import (
)
func main() {
fmt.Println(dbconfig.ConnectString)
db, err := sql.Open("postgres", dbconfig.ConnectString)
if err != nil {
panic("Failed to connect to test db")
@ -38,6 +40,7 @@ func main() {
Password: dbconfig.Password,
DBName: dbconfig.DBName,
SchemaName: schemaName,
SslMode: "disable",
})
panicOnError(err)