Redis – How to add config args to postgres service container in Github Action?
I am using Github Actions Service Container to start a postgres instance like so: name: Pull Request on: pull_request: branches: - main - staging jobs: test-and-build: runs-on: ubuntu-latest services: redis: image: redis ports: - 6379:6379 postgres: image: postgres env: POSTGRES_PASSWORD:…