Travis¶
To run Testcontainers on TravisCI, docker needs to be installed. The configuration below is the minimal required config.
language: go
go:
- 1.x
- "1.21"
services:
- docker
script: go test ./... -v
To run Testcontainers on TravisCI, docker needs to be installed. The configuration below is the minimal required config.
language: go
go:
- 1.x
- "1.21"
services:
- docker
script: go test ./... -v