Skip to content

Commit

Permalink
added flake8 pip install statement
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaMans committed Jul 23, 2021
1 parent 1e8c935 commit 6fc318a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -18,6 +18,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
python -m pip install flake8
if [ -f requirements.dev.txt ]; then pip install -r requirements.dev.txt; else pip install .[testing]; fi
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 6fc318a

Please sign in to comment.