We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c09a53 commit 304ed37Copy full SHA for 304ed37
.github/workflows/ci.yml
@@ -21,20 +21,16 @@ jobs:
21
runs-on: ubuntu-18.04
22
strategy:
23
matrix:
24
- python-version:
25
- - 2.7
26
- - 3.6
27
- - 3.7
28
- - 3.8
29
- - 3.9
+ python-image:
+ - python:2.7-slim
+ - python:3.6-slim
+ - python:3.7-slim
+ - python:3.8-slim
+
30
+ container: ${{ matrix.python-image }}
31
steps:
- - name: Setup python ${{ matrix.python-version }}
32
- uses: actions/setup-python@v2
33
- with:
34
- python-version: ${{ matrix.python-version }}
35
- architecture: x64
36
37
- - name: Test Python version ${{ matrix.python-version }}
+ - name: Test Python version
38
run: python --version
39
40
- name: Checkout repository
0 commit comments