setup before
Some checks failed
Test suites / test-os-python-matrix (ubuntu-22.04, 3.10) (pull_request) Failing after 9s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.12) (pull_request) Failing after 9s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.11) (pull_request) Failing after 10s
Test suites / test-os-python-matrix (ubuntu-22.04, 3.13) (pull_request) Failing after 9s
Test suites / formatting (pull_request) Failing after 9s
Test suites / pylint (pull_request) Failing after 10s
Test suites / mypy (pull_request) Failing after 9s
Test suites / reuse (pull_request) Successful in 7s
Test suites / test-build-install (pull_request) Failing after 26s

This commit is contained in:
2025-04-01 23:02:16 +02:00
parent aa0cd1b759
commit 5e57d49d75

View File

@@ -17,16 +17,16 @@ inputs:
runs:
using: "composite"
steps:
- name: Add pipx to PATH
run: echo "/root/.local/bin" >> ${GITHUB_PATH}
- name: Install poetry
run: pipx install poetry
shell: bash
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python }}
cache: "poetry"
- name: Add pipx to PATH
run: echo "/root/.local/bin" >> ${GITHUB_PATH}
- name: Install poetry
run: pipx install poetry
shell: bash
- name: Install dependencies
run: poetry install --no-interaction ${{ inputs.poetry_args }}
shell: bash