Skip to content

Commit b4bbe5e

Browse files
committed
fix db port in CI
1 parent f873873 commit b4bbe5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/elixir_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
--health-timeout 5s
3232
--health-retries 5
3333
ports:
34-
- 54321:5432
34+
- 55555:5432
3535

3636
steps:
3737
- uses: actions/checkout@v4

config/runtime.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Config
22

33
if config_env() == :test do
44
# port = 3333
5-
default_database_url = "postgresql://postgres:password@localhost:54321/electric?sslmode=disable"
5+
default_database_url = "postgresql://postgres:password@localhost:55555/electric?sslmode=disable"
66
database_url = System.get_env("DATABASE_URL", default_database_url)
77

88
config :electric,

0 commit comments

Comments
 (0)