Skip to content

Commit 24b6956

Browse files
committed
python 3.7 and 3.9 github actions
1 parent ae49958 commit 24b6956

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/pythonapp.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,20 @@ jobs:
3131
tests:
3232
name: Tests
3333
runs-on: ubuntu-latest
34+
strategy:
35+
matrix:
36+
python-version: [3.7, 3.8, 3.9]
3437
steps:
3538
- uses: actions/checkout@v2
36-
- name: Set up Python 3.8
39+
- name: Set up Python ${{ matrix.python-version }}
3740
uses: actions/setup-python@v1
3841
with:
39-
python-version: 3.8
42+
python-version: ${{ matrix.python-version }}
4043
- name: Install libsndfile
4144
run: |
4245
sudo apt-get install -y libsndfile1
46+
- name: Display Python version
47+
run: python -c "import sys; print(sys.version)"
4348
- name: Full dependencies
4449
run: |
4550
pip install -r requirements.txt

0 commit comments

Comments
 (0)