Skip to content

Merge pull request #80 from oleg-vinted/feature/add_word_re #6

Merge pull request #80 from oleg-vinted/feature/add_word_re

Merge pull request #80 from oleg-vinted/feature/add_word_re #6

Workflow file for this run

name: Python
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --max-line-length=100 --show-source --statistics