File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
6
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
+
7
37
legacy :
8
38
runs-on : ubuntu-latest
9
39
continue-on-error : true
You can’t perform that action at this time.
0 commit comments