Skip to content

Merge pull request #11 from syn-4ck/syn-4ck-patch-1 #44

Merge pull request #11 from syn-4ck/syn-4ck-patch-1

Merge pull request #11 from syn-4ck/syn-4ck-patch-1 #44

Workflow file for this run

name: Code lint
on: [push, pull_request]
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: pip install flake8
- name: Run Flake8
working-directory: src
run: flake8 . --ignore E501,W503