fix(actions): reverted to manual install with pip for workflow
Some checks failed
Pylint / Pylint (push) Failing after 1m4s

This commit is contained in:
Seaswimmer 2023-09-24 12:23:15 -04:00
parent 1ee8841ef4
commit 25fa9a0f83
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -13,12 +13,11 @@ jobs:
- name: Set up Python 3.11 - name: Set up Python 3.11
run: | run: |
add-apt-repository ppa:deadsnakes/ppa add-apt-repository ppa:deadsnakes/ppa
apt install -y python3.11 gcc python3.11-dev python3.11-venv python3-dev apt install -y python3.11 gcc python3.11-dev python3.11-venv
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3.11 -
- name: Install dependencies - name: Install dependencies
run: /root/.local/bin/poetry install --with dev
- name: Analysing the code with Pylint
run: | run: |
/root/.local/bin/poetry shell python3.11 -m pip install --upgrade pip
pylint $(git ls-files '*.py') 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')