rpi-rgb/.gitea/workflows/python-pep8.yaml
Finn Christiansen a644867331
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Python formatting PEP8 / Pyhton-PEP8 (push) Failing after 1s
remove explicit Pyhton version
2023-05-28 17:20:02 +01:00

22 lines
462 B
YAML

name: Python formatting PEP8
run-name: ${{ gitea.actor }} is running PEP8 check
on: [push]
jobs:
Pyhton-PEP8:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
- uses: https://github.com/actions/setup-python@v4
- name: Install dependencies
run: |
pip install flake8
- name: Run checking
run: |
flake8 --extend-exclude bin,lib .