Skip to content

Commit 8447761

Browse files
committed
CI: add test case for issue 586
1 parent c4cc5eb commit 8447761

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Test case for issue 586
2+
on: [push, pull_request]
3+
jobs:
4+
python:
5+
strategy:
6+
matrix:
7+
python-version:
8+
- "3.7"
9+
- "3.8"
10+
- "3.9"
11+
- "3.10"
12+
- "3.11"
13+
- "3.12"
14+
- "3.13"
15+
runs-on: windows-latest
16+
continue-on-error: true
17+
steps:
18+
- name: Set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: ${{ matrix.python-version }}
22+
- name: Double-check Python version
23+
run: |
24+
python --version
25+
- name: Clone Git repository
26+
uses: actions/checkout@v4
27+
with:
28+
submodules: true
29+
- name: Install Python package
30+
run: |
31+
python -m pip install .
32+
- name: Run tests
33+
run: |
34+
python -c "import sounddevice; 1 / 0"

0 commit comments

Comments
 (0)