Skip to content

Commit

Permalink
Update CI workflow to use latest Ubuntu and Windows runners with mult…
Browse files Browse the repository at this point in the history
…iple Python versions
  • Loading branch information
polischuks committed Feb 15, 2025
1 parent 19303af commit 1eba272
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1eba272

Please sign in to comment.