ci: fix act-runner networking (service names not localhost) + non-conflicting host ports
ci / test (push) Failing after 42s
ci / postgres-readiness (push) Failing after 4s
ci / build-image (push) Has been skipped

This commit is contained in:
Codex
2026-08-10 13:13:47 +00:00
parent e73786985d
commit 74a0462b10
+5 -5
View File
@@ -36,7 +36,7 @@ jobs:
POSTGRES_USER: mvp
POSTGRES_PASSWORD: mvp
ports:
- 5432:5432
- 15432:5432
options: >-
--health-cmd "pg_isready -U mvp -d mvpcc"
--health-interval 10s
@@ -45,14 +45,14 @@ jobs:
rabbitmq:
image: rabbitmq:3-management
ports:
- 5672:5672
- 15672:15672
- 15672:5672
- 15673:15672
env:
DATABASE_URL: postgresql://mvp:mvp@localhost:5432/mvpcc
DATABASE_URL: postgresql://mvp:mvp@postgres:5432/mvpcc
SCHEMA_MANAGEMENT_MODE: migrations
CC_DATA_DIR: .testdata_pg
EVENT_BUS_ENABLED: "0"
EVENT_BUS_URL: amqp://guest:guest@localhost:5672/
EVENT_BUS_URL: amqp://guest:guest@rabbitmq:5672/
APP_TOKEN_SECRET: ci-secret
ALLOW_LEGACY_HEADER_AUTH: "1"
TELEGRAM_BOT_ENABLED: "0"