We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498dace commit b64a394Copy full SHA for b64a394
1 file changed
.github/workflows/ci.yml
@@ -4,6 +4,36 @@ on:
4
push:
5
6
jobs:
7
+ superlegacy:
8
+ runs-on: ubuntu-latest
9
+
10
+ strategy:
11
+ matrix:
12
+ python-version: [2.6, 3.3, 3.4]
13
+ include:
14
+ - python-version: 2.6
15
+ image: cronosmobi/python2.6
16
+ - python-version: 3.3
17
+ image: python:3.3-slim
18
+ - python-version: 3.4
19
+ image: python:3.4-slim
20
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v4
24
25
+ - name: Run tests in Python ${{ matrix.python-version }}
26
+ uses: addnab/docker-run-action@v3
27
+ with:
28
+ image: ${{ matrix.image }}
29
+ options: -v ${{ github.workspace }}:/workspace
30
+ run: |
31
+ cd /workspace
32
+ python --version
33
+ pip install -r requirements.txt
34
+ pip install -e .
35
+ nosetests --with-doctest
36
37
legacy:
38
runs-on: ubuntu-latest
39
continue-on-error: true
0 commit comments