Skip to content

Update and rename pylint.yml to flake8.yml #1

Update and rename pylint.yml to flake8.yml

Update and rename pylint.yml to flake8.yml #1

Workflow file for this run

name: Flake8
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8
- name: Analysing the code with flake8 (PEP8)
run: |
source venv/bin/activate
flake8 $(git ls-files '*.py') --count --max-line-length=79 --statistics