We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ca7bea commit f595986Copy full SHA for f595986
1 file changed
.github/workflows/sounddevice-data.yml
@@ -4,13 +4,20 @@ jobs:
4
binaries:
5
strategy:
6
matrix:
7
- os: [macos-latest, windows-latest]
+ include:
8
+ - os: macos-latest
9
+ arch: 'x64'
10
+ - os: windows-latest
11
12
13
+ arch: 'x86'
14
runs-on: ${{ matrix.os }}
15
steps:
16
- name: Set up Python
17
uses: actions/setup-python@v2
18
with:
19
python-version: 3.9
20
+ architecture: ${{ matrix.arch }}
21
- name: Double-check Python version
22
run: |
23
python --version
0 commit comments