Skip to content

Commit

Permalink
💚 Fix CI test suite for Python 3.7 (#1309)
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg authored Feb 24, 2025
1 parent 8a35352 commit ac9d1a5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ env:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-latest ]
python-version:
- "3.8"
- "3.9"
Expand All @@ -35,7 +35,15 @@ jobs:
pydantic-version:
- pydantic-v1
- pydantic-v2
include:
- os: ubuntu-22.04
python-version: "3.7"
pydantic-version: pydantic-v1
- os: ubuntu-22.04
python-version: "3.7"
pydantic-version: pydantic-v2
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down

0 comments on commit ac9d1a5

Please sign in to comment.