Skip to content

Update pylint.yml

Update pylint.yml #23

Workflow file for this run

name: Run in Custom Docker Image
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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')