Skip to content

Commit

Permalink
Create flake8-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Dec 26, 2020
1 parent 1757726 commit 4beb7f2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/flake8-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

name: PEP8
on: [pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python 3.7
uses: actions/setup-python@master
with:
version: 3.7
- name: flake8
run: |
pip install flake8
flake8 . --show-source --statistics

0 comments on commit 4beb7f2

Please sign in to comment.