Skip to content

Commit e757b43

Browse files
committed
Add pep8 check on push
1 parent 88a7e74 commit e757b43

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/pep8-push.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: PEP8 check (push)
2+
3+
on: [push]
4+
5+
jobs:
6+
run:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: 'Run PEP8'
11+
uses: quentinguidee/pep8-action@v1
12+
id: run_pep8
13+
with:
14+
arguments: '--max-line-length=79'
15+
continue-on-error: false

0 commit comments

Comments
 (0)