From 0a14da91089105f870858f9d26f17cfeae202f3a Mon Sep 17 00:00:00 2001 From: KnugiHK <24708955+KnugiHK@users.noreply.github.com> Date: Mon, 5 Jan 2026 00:31:47 +0800 Subject: [PATCH] Reduce CI platforms --- .github/workflows/ci.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26ddfed..d8a4cd9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,15 +13,19 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest, windows-11-arm, macos-15-intel] - python-version: ["3.13", "3.14"] + os: [ubuntu-latest] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] include: - - os: ubuntu-latest - python-version: "3.10" - - os: ubuntu-latest - python-version: "3.11" - - os: ubuntu-latest - python-version: "3.12" + - os: windows-latest + python-version: "3.13" + - os: macos-latest + python-version: "3.13" + - os: windows-11-arm + python-version: "3.13" + - os: macos-15-intel + python-version: "3.13" + - os: windows-latest + python-version: "3.14" steps: - name: Checkout code