Revert back curl install of poetry in pipelines

This commit is contained in:
Antoine Bartuccio 2024-11-15 14:32:56 +01:00
parent db9f86c41e
commit 5e8d8b8d5d

View File

@ -6,7 +6,7 @@ runs:
- name: Install apt packages - name: Install apt packages
uses: awalsh128/cache-apt-pkgs-action@latest uses: awalsh128/cache-apt-pkgs-action@latest
with: with:
packages: gettext pipx packages: gettext
version: 1.0 # increment to reset cache version: 1.0 # increment to reset cache
- name: Set up python - name: Set up python
@ -19,12 +19,12 @@ runs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ~/.local path: ~/.local
key: poetry-2 # increment to reset cache key: poetry-3 # increment to reset cache
- name: Install Poetry - name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true' if: steps.cached-poetry.outputs.cache-hit != 'true'
shell: bash shell: bash
run: pipx install poetry run: curl -sSL https://install.python-poetry.org | python3 -
- name: Check pyproject.toml syntax - name: Check pyproject.toml syntax
shell: bash shell: bash