From f073d3c02d722745e38deedbb62c4872dd2d2b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Tue, 19 Aug 2025 09:56:01 -0600 Subject: [PATCH] ci: Run Python 3.7 tests in an older version of Ubuntu --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f23ffe9..dbb66b3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,12 +21,13 @@ env: jobs: test: - runs-on: ubuntu-latest + name: Python ${{ matrix.python-version }} + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: + os: [ubuntu-24.04] python-version: - - "3.7" - "3.8" - "3.9" - "3.10" @@ -34,6 +35,9 @@ jobs: - "3.12" - "3.13" - "3.14" + include: + - os: ubuntu-22.04 + python-version: "3.7" steps: - name: Checkout code uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0