Skip to content

test 2 - remove failed test files #24

test 2 - remove failed test files

test 2 - remove failed test files #24

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Get modified Python files
id: changed-files
run: |
FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} -- '*.py' | tr '\n' ' ')
echo "files=$FILES" >> $GITHUB_OUTPUT
- name: Analysing the code with pylint
if: steps.changed-files.outputs.files != ''
run: |
pylint ${{ steps.changed-files.outputs.files }}