Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,19 @@ jobs:
platform:
- runner: windows-latest
target: x64
architecture: x64
- runner: windows-latest
target: x86
architecture: x86
- runner: windows-11-arm
target: aarch64
architecture: arm64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
architecture: ${{ matrix.platform.target }}
architecture: ${{ matrix.platform.architecture }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down
Loading