Files
stream-shot/.gitea/workflows/lint.yml
Space-Banane 157b49be64
All checks were successful
Lint and Syntax Check / build (push) Successful in 22s
Update Python version to 3.14 in lint workflow
2026-04-01 17:49:30 +02:00

34 lines
909 B
YAML

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.14'
- 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