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 7bca5c6 commit 43961c4Copy full SHA for 43961c4
.github/workflows/all-test.yml
@@ -97,6 +97,19 @@ jobs:
97
name: pkg/${{matrix.package}}/
98
runs-on: ubuntu-latest
99
needs: define_pkg_list
100
+ services:
101
+ postgres:
102
+ image: postgres
103
+ env:
104
+ POSTGRES_PASSWORD: postgres
105
+ # Set health checks to wait until postgres has started
106
+ options: >-
107
+ --health-cmd pg_isready
108
+ --health-interval 10s
109
+ --health-timeout 5s
110
+ --health-retries 5
111
+ ports:
112
+ - 5432:5432
113
strategy:
114
fail-fast: false
115
matrix:
@@ -137,3 +150,5 @@ jobs:
137
150
fi
138
151
dart test --run-skipped
139
152
working-directory: pkg/${{matrix.package}}
153
154
+ PUB_POSTGRES_URL: postgresql://postgres:postgres@localhost:5432/postgres?sslmode=disable
0 commit comments