diff --git a/.forgejo/workflows/python-pep8.yaml b/.forgejo/workflows/python-pep8.yaml new file mode 100644 index 0000000..5b5621f --- /dev/null +++ b/.forgejo/workflows/python-pep8.yaml @@ -0,0 +1,19 @@ +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 .