Skip to content

Commit 4beb7f2

Browse files
authored
Create flake8-check.yml
1 parent 1757726 commit 4beb7f2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/flake8-check.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
name: PEP8
3+
on: [pull_request]
4+
jobs:
5+
run:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@master
9+
- name: Setup Python 3.7
10+
uses: actions/setup-python@master
11+
with:
12+
version: 3.7
13+
- name: flake8
14+
run: |
15+
pip install flake8
16+
flake8 . --show-source --statistics

0 commit comments

Comments
 (0)