File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 49
49
if : github.event.pull_request.head.repo.fork == true
50
50
permissions :
51
51
contents : read
52
- strategy :
53
- matrix :
54
- postgres_version : [17, 16, 15, 14]
55
52
steps :
56
53
- name : Checkout repository
57
54
uses : actions/checkout@v4
64
61
with :
65
62
key : test-partial
66
63
67
- - name : Start Docker Compose Environment (Postgres ${{ matrix.postgres_version }} )
64
+ - name : Start Docker Compose Environment (Postgres 17 )
68
65
run : |
69
- POSTGRES_VERSION=${{ matrix.postgres_version }} docker compose -f ./scripts/docker-compose.yaml up -d
66
+ POSTGRES_VERSION=17 docker compose -f ./scripts/docker-compose.yaml up -d
70
67
71
68
- name : Install sqlx-cli
72
69
run : |
99
96
permissions :
100
97
contents : read
101
98
id-token : write
102
- strategy :
103
- matrix :
104
- postgres_version : [17, 16, 15, 14]
105
99
steps :
106
100
- name : Checkout repository
107
101
uses : actions/checkout@v4
@@ -114,9 +108,9 @@ jobs:
114
108
with :
115
109
key : test-full
116
110
117
- - name : Start Docker Compose Environment (Postgres ${{ matrix.postgres_version }} )
111
+ - name : Start Docker Compose Environment (Postgres 17 )
118
112
run : |
119
- POSTGRES_VERSION=${{ matrix.postgres_version }} docker compose -f ./scripts/docker-compose.yaml up -d
113
+ POSTGRES_VERSION=17 docker compose -f ./scripts/docker-compose.yaml up -d
120
114
121
115
- name : Install sqlx-cli
122
116
run : |
You can’t perform that action at this time.
0 commit comments