Skip to content

Init commit: Testing out Pylint in project #1

Init commit: Testing out Pylint in project

Init commit: Testing out Pylint in project #1

Workflow file for this run

name: Pylint
on:
push: {}
pull_request: {}
jobs:
build:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: 3.12
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')