diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 159ac5f..c657c2b 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - test jobs: build: diff --git a/config/db.go b/config/db.go index 9763d02..35686ab 100644 --- a/config/db.go +++ b/config/db.go @@ -26,7 +26,7 @@ func ConnectToPostgreSQL() (*sql.DB, error) { return nil, err } - fmt.Println("Connection to PostgreSQL opened successfully!") + fmt.Println("Connection to PostgreSQL opened successfully :D") // Set the maximum number of open connections to 20 db.SetMaxOpenConns(20)