Skip to content

Commit b64a394

Browse files
Refs #265. Try to test against python 2.7, 3.3 and 3.4
1 parent 498dace commit b64a394

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,36 @@ on:
44
push:
55

66
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+
737
legacy:
838
runs-on: ubuntu-latest
939
continue-on-error: true

0 commit comments

Comments
 (0)