Skip to content

Commit 83f5628

Browse files
committed
fixup
1 parent 2ca08e5 commit 83f5628

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

.github/workflows/test.yml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ permissions:
1010
contents: read
1111

1212
jobs:
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"
@@ -38,3 +37,28 @@ jobs:
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

0 commit comments

Comments
 (0)