rpi-rgb/.gitea/workflows/python-pep8.yaml

19 lines
363 B
YAML
Raw Normal View History

2023-05-28 16:34:44 +02:00
python-pep8:
name: Python formatting PEP8
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install flake8
- name: Run checking
run: |
flake8 --extend-exclude bin,lib .