Skip to content

Merge pull request #56 from mschubert/patch-1 #5

Merge pull request #56 from mschubert/patch-1

Merge pull request #56 from mschubert/patch-1 #5

Workflow file for this run

name: Lint using flake8.
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Lint with flake8
run: |
pip install flake8
python -m flake8 . --count --show-source --statistics