Initial commit
Some checks failed
Pylint / Pylint (3.10) (push) Failing after 46s

This commit is contained in:
SeaswimmerTheFsh 2023-12-14 18:35:25 -05:00
parent 9d28e3f653
commit db2f6bdded
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE
9 changed files with 3347 additions and 0 deletions

View file

@ -0,0 +1,16 @@
[MESSAGES CONTROL]
disable=
too-many-lines,
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
line-too-long,
too-many-arguments,
too-many-branches,
superfluous-parens,
invalid-name,
too-many-locals,
too-many-public-methods,
too-many-statements,
arguments-differ,
too-many-return-statements

View file

@ -0,0 +1,28 @@
name: Pylint
on: [push]
jobs:
Pylint:
runs-on: docker
strategy:
matrix:
python-version: ["3.10"]
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://cdn.seaswimmer.cc/go/poetry | python${{ matrix.python-version }} -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry env use ${{ matrix.python-version }}
poetry install --with dev
- name: Analysing the code with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')