Skip to content

Commit c677ab9

Browse files
Refs #265. Try using docker images for legacy pythons
1 parent 1b84c16 commit c677ab9

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ on:
66
jobs:
77
test:
88
runs-on: ubuntu-latest
9-
109
strategy:
11-
matrix:
12-
python-version: [2.7, 3.6, 3.7]
13-
10+
matrix:
11+
include:
12+
- python-version: 2.7
13+
image: python:2.7-slim
14+
- python-version: 3.6
15+
image: python:3.6-slim
16+
- python-version: 3.7
17+
image: python:3.7-slim
18+
container:
19+
image: python:${{ matrix.python-version }}-slim
1420
steps:
1521
- uses: actions/checkout@v4
1622
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)