client-go
client-go copied to clipboard
Improve integration tests via github action services
Maybe we can improve the integration test via github action services as described in https://docs.github.com/en/actions/guides/about-service-containers
# Service containers to run with `runner-job`
services:
# Label used to access the service container
redis:
# Docker Hub image
image: redis
#
ports:
# Opens tcp port 6379 on the host and service container
- 6379:6379
Thanks. It's a good idea. In fact, I have tried it but not succeed. It seems to have something wrong with services access each other.
I'll label this todo and help wanted in case someone is willing to help.
Let's close this stale issue.