Skip to content

GitHub: add auto-labelling to pull requests #468

GitHub: add auto-labelling to pull requests

GitHub: add auto-labelling to pull requests #468

Workflow file for this run

name: Python Flake8 Code Quality
on:
- push
- pull_request
jobs:
flake8:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install
run: |
python -m pip install --upgrade pip
pip install flake8==3.9.2
- name: Run Flake8
run: |
flake8 --count --statistics --show-source --jobs=$(nproc) .