Skip to content

Commit bf9b494

Browse files
author
Ivan Katanovic
committed
Allow 5.2 to fail
1 parent d26635b commit bf9b494

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

.github/workflows/ci.yml

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
tests:
99
runs-on: ubuntu-latest
10-
continue-on-error: ${{ matrix.django == '5.2' }}
10+
continue-on-error: ${{ matrix.allow_failure || false }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
@@ -21,6 +21,24 @@ jobs:
2121
- python: "3.9"
2222
django: "5.2"
2323
db: "postgres"
24+
- python: "3.10"
25+
django: "5.2"
26+
db: "sqlite3"
27+
- python: "3.10"
28+
django: "5.2"
29+
db: "postgres"
30+
- python: "3.11"
31+
django: "5.2"
32+
db: "sqlite3"
33+
- python: "3.11"
34+
django: "5.2"
35+
db: "postgres"
36+
- python: "3.12"
37+
django: "5.2"
38+
db: "sqlite3"
39+
- python: "3.12"
40+
django: "5.2"
41+
db: "postgres"
2442
- python: "3.11"
2543
django: "3.2"
2644
db: "sqlite3"
@@ -33,6 +51,31 @@ jobs:
3351
- python: "3.12"
3452
django: "3.2"
3553
db: "postgres"
54+
include:
55+
- python: "3.10"
56+
django: "5.2"
57+
db: "sqlite3"
58+
allow_failure: true
59+
- python: "3.10"
60+
django: "5.2"
61+
db: "postgres"
62+
allow_failure: true
63+
- python: "3.11"
64+
django: "5.2"
65+
db: "sqlite3"
66+
allow_failure: true
67+
- python: "3.11"
68+
django: "5.2"
69+
db: "postgres"
70+
allow_failure: true
71+
- python: "3.12"
72+
django: "5.2"
73+
db: "sqlite3"
74+
allow_failure: true
75+
- python: "3.12"
76+
django: "5.2"
77+
db: "postgres"
78+
allow_failure: true
3679
services:
3780
postgres:
3881
image: postgres:15

0 commit comments

Comments
 (0)