Skip to content

Commit

Permalink
fix: 🐛 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Aug 9, 2023
1 parent d6c823a commit 8bd3d4d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- uses: actions/checkout@v3

# https://github.com/actions/setup-go/issues/326
# https://github.com/testcontainers/testcontainers-go/issues/1359
- name: Set up Go
uses: actions/setup-go@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: actions/checkout@v3

# https://github.com/actions/setup-go/issues/326
# https://github.com/testcontainers/testcontainers-go/issues/1359
- uses: actions/setup-go@v3
with:
go-version: 1.20.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ import (
"github.com/mehdihadeli/go-ecommerce-microservices/internal/pkg/test/containers/contracts"
)

// https://github.com/testcontainers/testcontainers-go/issues/1359
//https://github.com/testcontainers/testcontainers-go/issues/1249

type gormTestContainers struct {
container testcontainers.Container
defaultOptions *contracts.PostgresContainerOptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import (
"github.com/mehdihadeli/go-ecommerce-microservices/internal/pkg/test/containers/contracts"
)

// https://github.com/testcontainers/testcontainers-go/issues/1359
//https://github.com/testcontainers/testcontainers-go/issues/1249

type postgresPgxTestContainers struct {
container testcontainers.Container
defaultOptions *contracts.PostgresContainerOptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ import (
"github.com/mehdihadeli/go-ecommerce-microservices/internal/pkg/test/containers/contracts"
)

// https://github.com/testcontainers/testcontainers-go/issues/1359
// https://github.com/testcontainers/testcontainers-go/issues/1249

type rabbitmqTestContainers struct {
container testcontainers.Container
defaultOptions *contracts.RabbitMQContainerOptions
Expand Down

0 comments on commit 8bd3d4d

Please sign in to comment.