diff --git a/.github/workflows/run-cibuildwheel.yml b/.github/workflows/run-cibuildwheel.yml index 1274e56..cff00c1 100644 --- a/.github/workflows/run-cibuildwheel.yml +++ b/.github/workflows/run-cibuildwheel.yml @@ -22,6 +22,8 @@ jobs: include: - name: Windows os: windows-latest + - name: Windows arm64 + os: windows-11-arm - name: macOS x86_64 os: macos-13 - name: macOS arm64 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 201bd28..076ac48 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,8 +13,13 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-13, macos-latest] + os: [ubuntu-latest, windows-latest, windows-11-arm, macos-13, macos-latest] python-version: ['3.9', '3.10', '3.11', '3.12', '3.13.3'] + exclude: + - os: windows-11-arm # setup-python action only supports 3.11+ + python-version: '3.9' + - os: windows-11-arm # setup-python action only supports 3.11+ + python-version: '3.10' steps: - uses: actions/checkout@v4 with: