fix(actions): added python3-dev to apt install command and reverted previous commit
Some checks failed
Pylint / Pylint (push) Failing after 50s
Some checks failed
Pylint / Pylint (push) Failing after 50s
This commit is contained in:
parent
173728ffdb
commit
f08e1be9ba
1 changed files with 7 additions and 3 deletions
|
@ -13,10 +13,14 @@ 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
|
apt install -y python3.11 gcc python3.11-dev python3.11-venv python3-dev
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
run: curl -sSL https://install.python-poetry.org | python3.11 -
|
run: curl -sSL https://install.python-poetry.org | python3.11 -
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: python3.11 -m poetry install --with dev
|
run: |
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
poetry install --with dev
|
||||||
- name: Analysing the code with Pylint
|
- name: Analysing the code with Pylint
|
||||||
run: python3.11 -m poetry run pylint $(git ls-files '*.py')
|
run: |
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
poetry run pylint $(git ls-files '*.py')
|
||||||
|
|
Loading…
Reference in a new issue