matrix-bot-invitation-mailer/.forgejo/workflows/python-pep8.yaml
Finn Christiansen 99c2c62831
Some checks failed
ci / docker (push) Failing after 37s
Python formatting PEP8 / Python-PEP8 (push) Failing after 17s
🎉 First commit!
2024-06-26 19:52:11 +02:00

21 lines
457 B
YAML

name: Python formatting PEP8
run-name: ${{ forgejo.actor }} is running PEP8 check
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 .