We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a35352 commit ac9d1a5Copy full SHA for ac9d1a5
.github/workflows/test.yml
@@ -23,9 +23,9 @@ env:
23
24
jobs:
25
test:
26
- runs-on: ubuntu-latest
27
strategy:
28
matrix:
+ os: [ ubuntu-latest ]
29
python-version:
30
- "3.8"
31
- "3.9"
@@ -35,7 +35,15 @@ jobs:
35
pydantic-version:
36
- pydantic-v1
37
- pydantic-v2
38
+ include:
39
+ - os: ubuntu-22.04
40
+ python-version: "3.7"
41
+ pydantic-version: pydantic-v1
42
43
44
+ pydantic-version: pydantic-v2
45
fail-fast: false
46
+ runs-on: ${{ matrix.os }}
47
steps:
48
- uses: actions/checkout@v4
49
- name: Set up Python
0 commit comments