We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0be6170 commit 185cc26Copy full SHA for 185cc26
.github/workflows/libp2p-rust-dht.yml
@@ -226,6 +226,19 @@ jobs:
226
227
runs-on: ubuntu-latest
228
229
+ services:
230
+ postgres:
231
+ image: postgres
232
+ env:
233
+ POSTGRES_PASSWORD: mysecretpassword
234
+ options: >-
235
+ --health-cmd pg_isready
236
+ --health-interval 10s
237
+ --health-timeout 5s
238
+ --health-retries 5
239
+ ports:
240
+ - 5432:5432
241
+
242
steps:
243
- uses: actions/checkout@v3
244
@@ -271,7 +284,7 @@ jobs:
271
284
RUSTFLAGS: "-Cinstrument-coverage"
272
285
LLVM_PROFILE_FILE: "libp2p-rust-dht-%p-%m.profraw"
273
286
run: |
274
- cargo test --verbose
287
+ cargo test --verbose --all
275
288
276
289
- name: Run grcov
277
290
0 commit comments