Skip to content

Commit

Permalink
git rebase -i master
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Dec 23, 2019
1 parent 856afa6 commit ecbf93f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: lint_python
on: [push, pull_request]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- run: pip install flake8
- run: flake8 . --count --select=E9,F63 --show-source --statistics

0 comments on commit ecbf93f

Please sign in to comment.