Skip to content

Commit 95158fd

Browse files
Try again with continue-on-error set and additional pythons to determine which ones work
1 parent 235eeb3 commit 95158fd

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ on:
66
jobs:
77
legacy:
88
runs-on: ubuntu-latest
9+
continue-on-error: true
910
strategy:
1011
matrix:
11-
python: [2.7, 3.3, 3.4, 3.6, 3.7]
12-
defusedxml: [none, 0.4.1]
12+
python: [2.7, 3.3, 3.4, 3.6, 3.7, 3.8, 3.10]
13+
defusedxml: [none]
1314
include:
1415
- python: 2.7
1516
image: python:2.7-slim
@@ -21,6 +22,10 @@ jobs:
2122
image: python:3.6-slim
2223
- python: 3.7
2324
image: python:3.7-slim
25+
- python: 3.8
26+
image: python:3.8-slim
27+
- python: 3.10
28+
image: python:3.10-slim
2429

2530
container:
2631
image: ${{ matrix.image }}

0 commit comments

Comments
 (0)