-
-
Notifications
You must be signed in to change notification settings - Fork 215
40 lines (36 loc) · 1.09 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
name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
# pylint `ls -R|grep .py$|xargs`
pylint wplay/about_changer.py
pylint wplay/broadcast_message.py
pylint wplay/chat_intermediator.py
pylint wplay/chatbot.py
pylint wplay/download_media.py
pylint wplay/get_media.py
pylint wplay/get_news.py
pylint wplay/message_blast.py
pylint wplay/message_service.py
pylint wplay/message_timer.py
pylint wplay/online_tracker.py
pylint wplay/profile_download.py
pylint wplay/save_chat.py
pylint wplay/schedule_message.py
pylint wplay/target_info.py
pylint wplay/telegram_bot.py
pylint wplay/terminal_chat.py
pylint wplay/text_to_speech.py