diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 070b9d0..f7b74a3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,7 @@ jobs: - name: Wait for PostgreSQL to be ready run: | - while ! pg_isready -h 127.0.0.1 -p 5432 -U postgres; do + while ! pg_isready -h 127.0.0.1 -p 6666 -U postgres; do echo "Waiting for PostgreSQL..." sleep 1 done diff --git a/readme.md b/readme.md index d2e5667..d022132 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -[![GoDoc](https://pkg.go.dev/badge/alexisvisco/mig)](https://pkg.go.dev/alexisvisco/mig) +[![GoDoc](https://pkg.go.dev/badge/alexisvisco/amigo)](https://pkg.go.dev/alexisvisco/amigo) # Introduction @@ -8,7 +8,7 @@ Migration In Golang (MIG) is a library that allows you to write migrations in Go It provides you with all the benefits of Go, including type safety, simplicity, and strong tooling support. MIG is designed to be easy to use and integrate into existing projects. -General documentation: [https://mig-go.alexisvis.co](https://mig-go.alexisvis.co) +General documentation: [https://amigo.alexisvis.co](https://amigo.alexisvis.co) ## Features