Skip to content

Commit 86d3bee

Browse files
committed
✨ feat(CI.yml): Add support for macOS 13 and macOS-latest with all Python versions
1 parent 7d5b03b commit 86d3bee

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

.github/workflows/CI.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,34 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
platform:
46+
include:
47+
# macOS 13 (x86_64) со всеми версиями Python
48+
- os: macos-13
49+
target: x86_64-apple-darwin
50+
python-version: "3.9"
51+
- os: macos-13
52+
target: x86_64-apple-darwin
53+
python-version: "3.10"
54+
- os: macos-13
55+
target: x86_64-apple-darwin
56+
python-version: "3.11"
4757
- os: macos-13
4858
target: x86_64-apple-darwin
59+
python-version: "3.12"
60+
61+
# macOS-latest (arm64) со всеми версиями Python
62+
- os: macos-latest
63+
target: aarch64-apple-darwin
64+
python-version: "3.9"
65+
- os: macos-latest
66+
target: aarch64-apple-darwin
67+
python-version: "3.10"
68+
- os: macos-latest
69+
target: aarch64-apple-darwin
70+
python-version: "3.11"
4971
- os: macos-latest
5072
target: aarch64-apple-darwin
51-
python-version: ["3.9", "3.10", "3.11", "3.12"]
73+
python-version: "3.12"
5274

5375
runs-on: ${{ matrix.os }}
5476
steps:

0 commit comments

Comments
 (0)