Skip to content

Update pylint.yml

Update pylint.yml #21

Workflow file for this run

name: Run in Custom Docker Image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install pylint
- name: Analysing the code with pylint
run: |
pylint --disable=unresolved-import,use-before-def $(git ls-files '*.py')