Add linting workflow with flake8 for Python syntax checks
Some checks failed
Lint and Syntax Check / build (push) Has been cancelled

This commit is contained in:
Space-Banane
2026-04-01 17:49:10 +02:00
parent c6eb7bcac4
commit dc6732d540

33
.gitea/workflows/lint.yml Normal file
View File

@@ -0,0 +1,33 @@
name: Lint and Syntax Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# Install flake8 for syntax checking
pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics