Add Github action to check lint

This commit is contained in:
Stéphane Bruckert 2020-01-12 13:18:34 +00:00 committed by GitHub
parent b1ceab2b8f
commit 5928981e3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

23
.github/workflows/pythonapp.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --show-source --statistics