Skip to content

Commit

Permalink
Adding Python 3.7 to GitHub Actions CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
perwin committed Nov 19, 2020
1 parent 3fe170e commit c68a673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.7, 3.8]

steps:
- uses: actions/checkout@v2
Expand All @@ -34,7 +34,7 @@ jobs:
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build package
- name: Build and test import of package
run: |
pip install -e . ; python -c "import pyimfit"
- name: Test with pytest
Expand Down

0 comments on commit c68a673

Please sign in to comment.