fix(ci): install Poetry before doing Python setup
Some checks failed
CI w/ Poetry and Docker / ci (pull_request) Failing after 43s

This commit is contained in:
Luke Tainton 2025-01-02 14:06:06 +00:00
parent c1f431bf8d
commit 8a66880eb4
Signed by: luke
SSH Key Fingerprint: SHA256:D34npKT7UaiT/7gULqu7EPSLWWVAjTjXf4kKfJ/fQBo

View File

@ -27,12 +27,6 @@ jobs:
format: sonarqube
no-fail: true
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "${{ vars.PYTHON_VERSION }}"
cache: 'poetry'
- name: Ensure pipx is in PATH
run: |
pipx ensurepath
@ -52,6 +46,12 @@ jobs:
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "${{ vars.PYTHON_VERSION }}"
cache: 'poetry'
- name: Install dependencies
run: |
source $HOME/.profile