Skip to content

Set verify context, loosen linting #168

Set verify context, loosen linting

Set verify context, loosen linting #168

Workflow file for this run

name: Flake8
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Analysing the code with flake8
run: |
flake8 --extend-ignore=E501,E401,E251 ./src/*