We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54b13b0 commit efeeaddCopy full SHA for efeeadd
.github/workflows/test.yml
@@ -18,17 +18,17 @@ jobs:
18
env:
19
RAILS_ENV: test
20
RACK_ENV: test
21
- DATABASE_URL: "postgresql://postgres@127.0.0.1/disclosure-checker-test"
+ DATABASE_URL: "postgresql://postgres:postgres@127.0.0.1/disclosure-checker-test"
22
EXTERNAL_URL: mocked_in_tests
23
DEV_TOOLS_ENABLED: "1"
24
25
services:
26
postgres:
27
- image: postgres:10.8-alpine
+ image: postgres:16-alpine
28
29
POSTGRES_DB: disclosure-checker-test
30
POSTGRES_USER: postgres
31
- POSTGRES_PASSWORD: ""
+ POSTGRES_PASSWORD: postgres
32
ports:
33
- 5432:5432
34
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
0 commit comments