Skip to content

Commit 5b5b29c

Browse files
authored
chore(ci): tests with different postgres versions (#37)
2 parents 701c1f3 + add5011 commit 5b5b29c

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/code-check.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@ name: Tests
22
on:
33
push:
44
branches: [ main ]
5+
paths-ignore:
6+
- '*.md'
7+
- 'docs/**'
58
pull_request:
69
branches: [ main ]
10+
paths-ignore:
11+
- '*.md'
12+
- 'docs/**'
713

814
permissions:
915
actions: read
@@ -17,10 +23,11 @@ jobs:
1723
strategy:
1824
matrix:
1925
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
26+
postgres-version: [ "16", "17", "18" ]
2027
fail-fast: true
2128
services:
2229
postgres:
23-
image: postgres:18
30+
image: postgres:${{ matrix.postgres-version }}
2431
env:
2532
POSTGRES_USER: taskiq_postgres
2633
POSTGRES_PASSWORD: look_in_vault

0 commit comments

Comments
 (0)