-
Notifications
You must be signed in to change notification settings - Fork 74
44 lines (38 loc) · 1.1 KB
/
pylint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Pylint Check
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Debug Information
run: |
echo "Current directory:"
pwd
echo "\nDirectory structure:"
ls -R
echo "\nGit root directory:"
git rev-parse --show-toplevel
echo "\nSearching for Python files:"
find . -name "*.py"
echo "\nGit ls-files output:"
git ls-files
echo "\nSpecific path search:"
git ls-files 'data_handler/*.py'
git ls-files './data_handler/*.py'
git ls-files 'apps/data_handler/*.py'
git ls-files './apps/data_handler/*.py'
- name: Run Pylint
run: |
files=$(git ls-files 'data_handler/*.py')
if [ -n "$files" ]; then
pylint $files --disable=all --enable=C0114,C0115,C0116,C0301
fi