Skip to content

Commit

Permalink
.github: Run Flake8 as workflow
Browse files Browse the repository at this point in the history
I sure hope this works.
  • Loading branch information
derrod committed Sep 8, 2021
1 parent e428579 commit 6d6e3de
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint

on: [push, pull_request]

jobs:
lint:
name: Flake8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Run flake8
uses: julianwachholz/flake8-action@v2
with:
checkName: "Flake8"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6d6e3de

Please sign in to comment.