From dc6732d540f02ea52bc5dcd43da85f5ce72b8633 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Wed, 1 Apr 2026 17:49:10 +0200 Subject: [PATCH] Add linting workflow with flake8 for Python syntax checks --- .gitea/workflows/lint.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 0000000..8f7e491 --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -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