I try to transfer my projects CI to GitHub Actions. For integration tests I need to start and access redis container. I am using info from this article. So code looks like this
build-artifacts: name: Build artifacts runs-on: ubuntu-latest services: redis: image: redis:3.2.12 ports: - 6379:6379 I can access redis using localhost:6379 but I can't access it using redis:6379. The article does not help. What I am doing wrong?
Thank you in advance.