gh_action: fix python lint

This commit is contained in:
morris
2020-05-19 19:54:14 +08:00
parent ed05dd7713
commit d003f96a9d
8 changed files with 26 additions and 16 deletions
+3 -2
View File
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- name: Checkout
@@ -24,9 +24,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
export IDF_PATH=${GITHUB_WORKSPACE}
pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 . --config=.flake8
flake8 . --config=.flake8 --benchmark