We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2fda3d commit 50caa64Copy full SHA for 50caa64
1 file changed
.github/workflows/run-tests.yml
@@ -13,24 +13,13 @@ jobs:
13
defaults:
14
run:
15
working-directory: ./api
16
- services:
17
- postgres:
18
- image: postgres:15-alpine
19
- env:
20
- POSTGRES_USER: kenku
21
- POSTGRES_PASSWORD: kenku_test
22
- POSTGRES_DB: postgres
23
- ports:
24
- - 5433:5432
25
- options: >-
26
- --health-cmd pg_isready
27
- --health-interval 5s
28
- --health-timeout 5s
29
- --health-retries 5
30
steps:
31
- name: Checkout
32
uses: actions/checkout@v6
33
+ - name: Start Postgres
+ run: docker compose -f docker-compose.test.yml up -d --wait
+
34
- name: Set up .NET
35
uses: actions/setup-dotnet@v5
36
with:
0 commit comments