Skip to content

README: remove recommendations to use sudo #10

README: remove recommendations to use sudo

README: remove recommendations to use sudo #10

Workflow file for this run

name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install flake8
- name: Lint with flake8
run: |
echo "Linting current directory"
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --max-complexity=12 --max-line-length=120 --statistics