-
Notifications
You must be signed in to change notification settings - Fork 44
76 lines (74 loc) · 1.91 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
postgresql_15:
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 15
postgresql_14:
needs: [postgresql_15]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 14
postgresql_13:
needs: [postgresql_14]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 13
postgresql_12:
needs: [postgresql_13]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 12
postgresql_11:
needs: [postgresql_12]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 11
macos_postgres_15:
needs: [postgresql_15]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 15
os: macos-latest
macos_postgres_14:
needs: [postgresql_14, macos_postgres_15]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 14
os: macos-latest
macos_postgres_13:
needs: [postgresql_13, macos_postgres_14]
uses: ./.github/workflows/single-postgres.yml
with:
postgresql: 13
os: macos-latest
docker_postgresql_15:
needs: [postgresql_15]
uses: ./.github/workflows/dockerised-postgres.yml
with:
postgresql: 15
docker_postgresql_14:
needs: [postgresql_14, docker_postgresql_15]
uses: ./.github/workflows/dockerised-postgres.yml
with:
postgresql: 14
docker_postgresql_13:
needs: [postgresql_13, docker_postgresql_14]
uses: ./.github/workflows/dockerised-postgres.yml
with:
postgresql: 13
docker_postgresql_12:
needs: [postgresql_12, docker_postgresql_13]
uses: ./.github/workflows/dockerised-postgres.yml
with:
postgresql: 12
docker_postgresql_11:
needs: [postgresql_11, docker_postgresql_12]
uses: ./.github/workflows/dockerised-postgres.yml
with:
postgresql: 11