Skip to content

Commit f595986

Browse files
committed
CI: add test for x86 Windows
1 parent 8ca7bea commit f595986

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/sounddevice-data.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@ jobs:
44
binaries:
55
strategy:
66
matrix:
7-
os: [macos-latest, windows-latest]
7+
include:
8+
- os: macos-latest
9+
arch: 'x64'
10+
- os: windows-latest
11+
arch: 'x64'
12+
- os: windows-latest
13+
arch: 'x86'
814
runs-on: ${{ matrix.os }}
915
steps:
1016
- name: Set up Python
1117
uses: actions/setup-python@v2
1218
with:
1319
python-version: 3.9
20+
architecture: ${{ matrix.arch }}
1421
- name: Double-check Python version
1522
run: |
1623
python --version

0 commit comments

Comments
 (0)