name: Setup Python description: Setup Python inputs: python-version: description: Python version required: false default: "3.10" runs: using: "composite" steps: - name: Install poetry run: pipx install poetry shell: bash - uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }} cache: "poetry" - run: poetry install --all-extras shell: bash