rpi-rgb/.gitea/workflows/python-pep8.yaml
Finn Christiansen 0ae7d394f5
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
add pep8 workflow
2023-05-28 15:34:44 +01:00

18 lines
363 B
YAML

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 .