Skip to content

Merge pull request #228 from Nick2bad4u/dependabot/github_actions/git… #531

Merge pull request #228 from Nick2bad4u/dependabot/github_actions/git…

Merge pull request #228 from Nick2bad4u/dependabot/github_actions/git… #531

Workflow file for this run

name: Pylint
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11.8"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --exit-zero