We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b84c16 commit c677ab9Copy full SHA for c677ab9
1 file changed
.github/workflows/ci.yml
@@ -6,11 +6,17 @@ on:
6
jobs:
7
test:
8
runs-on: ubuntu-latest
9
-
10
strategy:
11
- matrix:
12
- python-version: [2.7, 3.6, 3.7]
13
+ matrix:
+ include:
+ - python-version: 2.7
+ 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
20
steps:
21
- uses: actions/checkout@v4
22
- name: Set up Python ${{ matrix.python-version }}
0 commit comments