Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
- Remove Python 5.5 and add Python 3.10
- Skip flake8 check
  • Loading branch information
molejar authored Jul 8, 2022
1 parent 98d9e91 commit b146598
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -23,13 +23,6 @@ jobs:
pip install pytest-console-scripts
pip install pytest-cov
pip install coveralls
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
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: Test with pytest
run: |
pip install -e .
Expand Down

0 comments on commit b146598

Please sign in to comment.