Skip to content

Commit a631d39

Browse files
Update pylint.yml
1 parent 84087e7 commit a631d39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install pylint
21-
pip install -r requirements.txt
21+
if [ -f requirements.txt ]; then pip install -r requirements.txt; else echo "requirements.txt not found"; fi
2222
- name: Analyzing the code with pylint
2323
run: |
2424
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)