add pep8 workflow
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s

This commit is contained in:
Finn Christiansen 2023-05-28 15:34:44 +01:00
parent ef4b486fe4
commit 0ae7d394f5

View file

@ -0,0 +1,18 @@
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 .