fastapi-boilerplate/.gitea/workflows/python-pep8.yaml
Finn Christiansen 44b73ab89d
Some checks failed
Python formatting PEP8 / Python-PEP8 (push) Failing after 15s
🚨 ignore alembic versions for pep8 check
2023-08-11 22:12:17 +02:00

21 lines
459 B
YAML

name: Python formatting PEP8
run-name: ${{ gitea.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 --extend-exclude bin,lib,alembic/versions .