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