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

22 lines
442 B
YAML
Raw Normal View History

2023-05-28 18:06:13 +02:00
name: Python formatting PEP8
run-name: ${{ gitea.actor }} is running PEP8 check
on: [push]
2023-05-28 16:34:44 +02:00
2023-05-28 18:06:13 +02:00
jobs:
2023-06-11 15:25:38 +02:00
Python-PEP8:
2023-05-28 19:14:29 +02:00
runs-on: ubuntu-22.04
2023-05-28 16:34:44 +02:00
2023-05-28 18:06:13 +02:00
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
2023-05-28 23:31:53 +02:00
apt-get update
apt-get install -y python3-pip
2023-05-28 18:06:13 +02:00
pip install flake8
- name: Run checking
run: |
flake8 --extend-exclude bin,lib .