Skip to content

Commit

Permalink
Merge pull request #958 from turian/py39
Browse files Browse the repository at this point in the history
python 3.7 and 3.9 github actions
  • Loading branch information
Gastron committed Sep 14, 2021
2 parents b408b0c + 60f5059 commit 2ec4839
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,20 @@ jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Install libsndfile
run: |
sudo apt-get install -y libsndfile1
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Full dependencies
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 2ec4839

Please sign in to comment.