rpi-rgb/.gitea/workflows/python-pep8.yaml
Finn Christiansen fbd31e7294
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Python formatting PEP8 / Pyhton-PEP8 (push) Failing after 3s
trying to install python manually, running setup-python on debian does not seem to work
2023-05-28 22:30:32 +01:00

20 lines
417 B
YAML

name: Python formatting PEP8
run-name: ${{ gitea.actor }} is running PEP8 check
on: [push]
jobs:
Pyhton-PEP8:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
apt-get install -y python3-pip
pip install flake8
- name: Run checking
run: |
flake8 --extend-exclude bin,lib .