SeaCogs/.forgejo/workflows/pylint.yaml
SeaswimmerTheFsh fd60adc2ae
All checks were successful
Build Documentation / Build Documentation and Push to CoastalCommits Pages (push) Successful in 49s
Pylint / Lint Code with Pylint (3.11) (push) Successful in 43s
misc(workflows): more verbose job names
2024-01-06 16:38:17 +00:00

28 lines
924 B
YAML

name: Pylint
on: [push, pull_request]
jobs:
Lint Code with Pylint:
runs-on: docker
strategy:
matrix:
python-version: ["3.11"]
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')