Skip to content

Commit

Permalink
✨ feat(CI.yml): Add support for macOS 13 and macOS-latest with all Py…
Browse files Browse the repository at this point in the history
…thon versions
  • Loading branch information
dotX12 committed Feb 3, 2025
1 parent 7d5b03b commit 86d3bee
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,34 @@ jobs:
strategy:
fail-fast: false
matrix:
platform:
include:
# macOS 13 (x86_64) со всеми версиями Python
- os: macos-13
target: x86_64-apple-darwin
python-version: "3.9"
- os: macos-13
target: x86_64-apple-darwin
python-version: "3.10"
- os: macos-13
target: x86_64-apple-darwin
python-version: "3.11"
- os: macos-13
target: x86_64-apple-darwin
python-version: "3.12"

# macOS-latest (arm64) со всеми версиями Python
- os: macos-latest
target: aarch64-apple-darwin
python-version: "3.9"
- os: macos-latest
target: aarch64-apple-darwin
python-version: "3.10"
- os: macos-latest
target: aarch64-apple-darwin
python-version: "3.11"
- os: macos-latest
target: aarch64-apple-darwin
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: "3.12"

runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 86d3bee

Please sign in to comment.