powermeter/.forgejo/workflows/python-pep8.yaml
Finn Christiansen 00b87b040e
Some checks failed
/ Python-PEP8 (push) Failing after 16s
👷 Add Forgejo workflow
2024-10-11 22:23:47 +02:00

19 lines
375 B
YAML

on: [push]
jobs:
Python-PEP8:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
apt-get update
apt-get install -y python3-pip
pip install flake8
- name: Run checking
run: |
flake8 --ignore=E501 --extend-exclude bin,lib .