Skip to content

Commit c47e1e5

Browse files
committed
ci: enable py37 testing
1 parent 54a1cc0 commit c47e1e5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: Tests
22
on: push
33
jobs:
44
tests:
5-
runs-on: ubuntu-latest
5+
runs-on: ${{ matrix.os }}
66
strategy:
77
matrix:
8+
os: ['ubuntu-latest']
89
python-version: [
910
'3.8',
1011
'3.9',
@@ -13,7 +14,10 @@ jobs:
1314
'3.12',
1415
]
1516
include:
17+
- python-version: '3.7'
18+
os: 'ubuntu-22.04'
1619
- python-version: '3.9'
20+
os: 'ubuntu-latest'
1721
post-venv: 'venv/bin/pip install "urllib3<2" "requests<=2.30" "types-requests<=2.30"'
1822
name: Python ${{ matrix.python-version }} ${{ matrix.post-venv }}
1923
steps:

0 commit comments

Comments
 (0)