We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae49958 commit 24b6956Copy full SHA for 24b6956
1 file changed
.github/workflows/pythonapp.yml
@@ -31,15 +31,20 @@ jobs:
31
tests:
32
name: Tests
33
runs-on: ubuntu-latest
34
+ strategy:
35
+ matrix:
36
+ python-version: [3.7, 3.8, 3.9]
37
steps:
38
- uses: actions/checkout@v2
- - name: Set up Python 3.8
39
+ - name: Set up Python ${{ matrix.python-version }}
40
uses: actions/setup-python@v1
41
with:
- python-version: 3.8
42
+ python-version: ${{ matrix.python-version }}
43
- name: Install libsndfile
44
run: |
45
sudo apt-get install -y libsndfile1
46
+ - name: Display Python version
47
+ run: python -c "import sys; print(sys.version)"
48
- name: Full dependencies
49
50
pip install -r requirements.txt
0 commit comments