Skip to content

Commit ac9d1a5

Browse files
authored
💚 Fix CI test suite for Python 3.7 (#1309)
1 parent 8a35352 commit ac9d1a5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/test.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ env:
2323

2424
jobs:
2525
test:
26-
runs-on: ubuntu-latest
2726
strategy:
2827
matrix:
28+
os: [ ubuntu-latest ]
2929
python-version:
3030
- "3.8"
3131
- "3.9"
@@ -35,7 +35,15 @@ jobs:
3535
pydantic-version:
3636
- pydantic-v1
3737
- pydantic-v2
38+
include:
39+
- os: ubuntu-22.04
40+
python-version: "3.7"
41+
pydantic-version: pydantic-v1
42+
- os: ubuntu-22.04
43+
python-version: "3.7"
44+
pydantic-version: pydantic-v2
3845
fail-fast: false
46+
runs-on: ${{ matrix.os }}
3947
steps:
4048
- uses: actions/checkout@v4
4149
- name: Set up Python

0 commit comments

Comments
 (0)