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 ed1b7f5 commit 738cb59Copy full SHA for 738cb59
.github/workflows/ci-cd.yaml
@@ -34,7 +34,7 @@ jobs:
34
needs: check
35
services:
36
postgres:
37
- image: postgres:15
+ image: postgres:13
38
ports:
39
- 5432:5432
40
env:
@@ -47,7 +47,7 @@ jobs:
47
--health-timeout 5s
48
--health-retries 5
49
50
- DATABASE_URL: postgres://devuser:devpassword@127.0.0.1:5432/devdb
+ DATABASE_URL: postgres://devuser:devpassword@localhost:5432/devdb
51
DB_HOST: localhost
52
DB_PORT: 5432
53
DB_USER: devuser
@@ -81,6 +81,9 @@ jobs:
81
- name: Run tests with macro backtrace
82
run: cargo test --features ssr -- -Z macro-backtrace
83
84
+ - name: Print Postgres logs
85
+ run: docker logs $(docker ps -q --filter "ancestor=postgres:15")
86
+
87
build:
88
name: Build WASM
89
runs-on: ubuntu-latest
0 commit comments