fix(actions): reverted to manual install with pip for workflow
Some checks failed
Pylint / Pylint (push) Failing after 1m4s
Some checks failed
Pylint / Pylint (push) Failing after 1m4s
This commit is contained in:
parent
1ee8841ef4
commit
25fa9a0f83
1 changed files with 6 additions and 7 deletions
|
@ -13,12 +13,11 @@ jobs:
|
|||
- name: Set up Python 3.11
|
||||
run: |
|
||||
add-apt-repository ppa:deadsnakes/ppa
|
||||
apt install -y python3.11 gcc python3.11-dev python3.11-venv python3-dev
|
||||
- name: Install Poetry
|
||||
run: curl -sSL https://install.python-poetry.org | python3.11 -
|
||||
apt install -y python3.11 gcc python3.11-dev python3.11-venv
|
||||
- name: Install dependencies
|
||||
run: /root/.local/bin/poetry install --with dev
|
||||
- name: Analysing the code with Pylint
|
||||
run: |
|
||||
/root/.local/bin/poetry shell
|
||||
pylint $(git ls-files '*.py')
|
||||
python3.11 -m pip install --upgrade pip
|
||||
python3.11 -m pip install pylint
|
||||
python3.11 -m pip install -U Red-DiscordBot pytimeparse2 yt-dlp
|
||||
- name: Analysing the code with Pylint
|
||||
run: pylint $(git ls-files '*.py')
|
||||
|
|
Loading…
Reference in a new issue