File tree Expand file tree Collapse file tree 1 file changed +27
-3
lines changed
Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,13 @@ permissions:
1010 contents : read
1111
1212jobs :
13- python :
14-
13+ python3.x :
1514 runs-on : ubuntu-latest
1615
1716 strategy :
17+ fail-fast : false
1818 matrix :
1919 python-version :
20- - " 2.7"
2120 - " 3.6"
2221 - " 3.9"
2322 - " 3.10"
3837
3938 - name : Run tests
4039 run : python setup.py test
40+
41+ python2.7 :
42+ runs-on : ubuntu-latest
43+ container :
44+ image : python:2.7.18-buster
45+
46+ strategy :
47+ fail-fast : false
48+ matrix :
49+ python-version :
50+ - " 2.7"
51+
52+ steps :
53+ - uses : actions/checkout@v4
54+
55+ - name : Set up Python ${{ matrix.python-version }}
56+ uses : actions/setup-python@v5
57+ with :
58+ python-version : ${{ matrix.python-version }}
59+
60+ - name : Install dependencies
61+ run : ./scripts/ci-install.sh
62+
63+ - name : Run tests
64+ run : python setup.py test
You can’t perform that action at this time.
0 commit comments