Skip to content

Commit

Permalink
issue usabilla#135
Browse files Browse the repository at this point in the history
* attempts to add python linting via github actions
* adds flake8 linting triggered on pull request and push
  • Loading branch information
Bjorn248 committed Oct 21, 2019
1 parent 9c0ce85 commit ec471b0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Linting

on: [push, pull_request]

jobs:
styles:
runs-on: ubuntu-18.04
name: Linting
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
- uses: WhyNotHugo/python-linting@v1.0.0

0 comments on commit ec471b0

Please sign in to comment.