Skip to content

Commit 432042e

Browse files
authored
Merge pull request #713 from pypa/ci-py37-ubuntu-22.04
Move Python 3.7 tests to Ubuntu 22.04
2 parents 7cc7d33 + 9e5bb2c commit 432042e

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

.github/workflows/test.yml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,33 @@ jobs:
2121
strategy:
2222
matrix:
2323
platform: ["ubuntu-latest", "windows-latest"]
24-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" , "3.12", "3.13" ]
24+
python-version: [ "3.8", "3.9", "3.10", "3.11" , "3.12", "3.13" ]
25+
steps:
26+
- uses: actions/checkout@v4
27+
28+
- name: Setup Python ${{ matrix.python-version }}
29+
uses: actions/setup-python@v5
30+
with:
31+
python-version: ${{ matrix.python-version }}
32+
33+
- name: Install dependencies
34+
run: |
35+
python -m pip install --upgrade pip
36+
pip install tox tox-gh-actions codecov
37+
38+
- name: Run tests
39+
run: tox
40+
41+
- name: Codecov upload
42+
env:
43+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
44+
run: codecov
45+
46+
test-py37:
47+
runs-on: "ubuntu-22.04"
48+
strategy:
49+
matrix:
50+
python-version: [ "3.7", ]
2551
steps:
2652
- uses: actions/checkout@v4
2753

0 commit comments

Comments
 (0)