Skip to content

Life and death update #4452

Life and death update

Life and death update #4452

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.10 x64
uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: 'x64'
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.4.1
- name: install dependencies
run: poetry install --with test
- name: Run Pylint
run: poetry run pylint --recursive=y --errors-only "$PWD"