From: Sofie Van Landeghem Date: Mon, 24 Feb 2025 09:18:24 +0000 (+0100) Subject: 💚 Fix CI test suite for Python 3.7 (#1309) X-Git-Tag: 0.0.23~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac9d1a514a144ad3fa6ca422dcbbe1bf2d0796fc;p=thirdparty%2Ffastapi%2Fsqlmodel.git 💚 Fix CI test suite for Python 3.7 (#1309) --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9126db93..19e69618 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,9 +23,9 @@ env: jobs: test: - runs-on: ubuntu-latest strategy: matrix: + os: [ ubuntu-latest ] python-version: - "3.8" - "3.9" @@ -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