Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

ci: extract python setup into reusable block #1

ci: extract python setup into reusable block

ci: extract python setup into reusable block #1

name: 'Setup Python'
inputs:
python-version-file:
required: true
outputs:
python-version:
value: ${{ steps.setup-python.outputs.python-version }}
runs:
using: "composite"
steps:
- uses: actions/setup-python@v5
if: setup-python
with:
python-version-file: ${{ inputs.python-version-file }}
cache: 'pip'