Skip to content

Commit 5aeff77

Browse files
Remove matrix strategy for test checks
1 parent 3e74769 commit 5aeff77

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ jobs:
4949
if: github.event.pull_request.head.repo.fork == true
5050
permissions:
5151
contents: read
52-
strategy:
53-
matrix:
54-
postgres_version: [17, 16, 15, 14]
5552
steps:
5653
- name: Checkout repository
5754
uses: actions/checkout@v4
@@ -64,9 +61,9 @@ jobs:
6461
with:
6562
key: test-partial
6663

67-
- name: Start Docker Compose Environment (Postgres ${{ matrix.postgres_version }})
64+
- name: Start Docker Compose Environment (Postgres 17)
6865
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
7067
7168
- name: Install sqlx-cli
7269
run: |
@@ -99,9 +96,6 @@ jobs:
9996
permissions:
10097
contents: read
10198
id-token: write
102-
strategy:
103-
matrix:
104-
postgres_version: [17, 16, 15, 14]
10599
steps:
106100
- name: Checkout repository
107101
uses: actions/checkout@v4
@@ -114,9 +108,9 @@ jobs:
114108
with:
115109
key: test-full
116110

117-
- name: Start Docker Compose Environment (Postgres ${{ matrix.postgres_version }})
111+
- name: Start Docker Compose Environment (Postgres 17)
118112
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
120114
121115
- name: Install sqlx-cli
122116
run: |

0 commit comments

Comments
 (0)