-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (52 loc) · 1.89 KB
/
postgres-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: postgres tests
on:
pull_request:
types: [opened, synchronize, reopened]
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: reasn
POSTGRES_HOST: localhost
jobs:
postgres-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: Database
services:
postgres:
image: postgres:16
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ env.POSTGRES_DB }}
steps:
- uses: actions/checkout@v4
- name: Initialize database
run: |
psql -h ${{ env.POSTGRES_HOST }} -U ${{ env.POSTGRES_USER }} -d ${{ env.POSTGRES_DB }} -f init-db.sql
psql -h ${{ env.POSTGRES_HOST }} -U ${{ env.POSTGRES_USER }} -d ${{ env.POSTGRES_DB }} -f init-constraints.sql
env:
PGPASSWORD: ${{ env.POSTGRES_PASSWORD }}
- name: Initialize development data
run: |
psql -h ${{ env.POSTGRES_HOST }} -U ${{ env.POSTGRES_USER }} -d ${{ env.POSTGRES_DB }} -f init-dev-data.sql
env:
PGPASSWORD: ${{ env.POSTGRES_PASSWORD }}
- name: Verify data initialization correctness
run: |
docker logs "${{ job.services.postgres.id }}" 2>&1 | tee "postgres-logs-commit-${{ github.sha }}.log"
if grep -q -i error postgres-logs-commit-${{ github.sha }}.log; then exit 1; fi
- name: Upload captured logs
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: postgres-logs-commit-${{ github.sha }}
path: Database/postgres-logs-commit-${{ github.sha }}.log
retention-days: 14