File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
tests :
14
- runs-on : ubuntu-latest
15
14
strategy :
16
15
matrix :
17
16
python-version :
@@ -21,14 +20,23 @@ jobs:
21
20
- " 3.10"
22
21
- " 3.11"
23
22
- " 3.12"
23
+ os :
24
+ - ubuntu-latest
25
+ include :
26
+ - python-version : " 3.7"
27
+ os : ubuntu-22.04
28
+ exclude :
29
+ - python-version : " 3.7"
30
+ os : ubuntu-latest
31
+ runs-on : " ${{ matrix.os }}"
24
32
steps :
25
- - uses : actions/checkout@v2
33
+ - uses : actions/checkout@v4
26
34
- name : Set up Python ${{ matrix.python-version }}
27
- uses : actions/setup-python@v2
35
+ uses : actions/setup-python@v4
28
36
with :
29
37
python-version : ${{ matrix.python-version }}
30
38
- name : Pip cache
31
- uses : actions/cache@v2
39
+ uses : actions/cache@v4
32
40
with :
33
41
path : ~/.cache/pip
34
42
key : ${{ runner.os }}-pip-${{ hashFiles('setup.*', 'tox.ini') }}
You can’t perform that action at this time.
0 commit comments