We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184e331 commit a9613f8Copy full SHA for a9613f8
.github/workflows/elixir_tests.yml
@@ -24,6 +24,7 @@ jobs:
24
image: "postgres:17-alpine"
25
env:
26
POSTGRES_PASSWORD: password
27
+ POSTGRES_DB: electric
28
options: >-
29
--health-cmd pg_isready
30
--health-interval 10s
@@ -35,6 +36,11 @@ jobs:
35
36
steps:
37
- uses: actions/checkout@v4
38
39
+ - name: "Set PG settings"
40
+ run: |
41
+ docker exec ${{ job.services.postgres.id }} sh -c 'echo "wal_level=logical" >> /var/lib/postgresql/data/postgresql.conf'
42
+ docker restart ${{ job.services.postgres.id }}
43
+
44
- uses: erlef/setup-beam@v1
45
with:
46
version-type: strict
0 commit comments