From 1eba272ce4ed119cf824081a22f236b06a13b247 Mon Sep 17 00:00:00 2001 From: polischuks Date: Sat, 15 Feb 2025 14:20:08 +0200 Subject: [PATCH] Update CI workflow to use latest Ubuntu and Windows runners with multiple Python versions --- .github/workflows/ci.yml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab5a476..16f23f4 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,29 +57,29 @@ jobs: fail-fast: false matrix: include: - # Self-hosted runner - - os: arc-runners-small + # Ubuntu + - os: ubuntu-latest python-version: "3.10" - - os: arc-runners-small + - os: ubuntu-latest python-version: "3.11" - - os: arc-runners-small + - os: ubuntu-latest python-version: "3.12" -# # Windows -# - os: windows-latest -# python-version: "3.10.11" -# - os: windows-latest -# python-version: "3.11" -# - os: windows-latest -# python-version: "3.12" -# -# # macOS (arm64) -# - os: macos-14 -# python-version: "3.10" -# - os: macos-14 -# python-version: "3.11" -# - os: macos-14 -# python-version: "3.12" + # Windows + - os: windows-latest + python-version: "3.10.11" + - os: windows-latest + python-version: "3.11" + - os: windows-latest + python-version: "3.12" + + # macOS (arm64) + - os: macos-14 + python-version: "3.10" + - os: macos-14 + python-version: "3.11" + - os: macos-14 + python-version: "3.12" steps: - uses: actions/checkout@v4 - uses: ./.github/workflows/actions/prepare