infra: release min version debugging (#17150)

This commit is contained in:
Erick Friis 2024-02-06 18:10:37 -08:00 committed by GitHub
parent 9710346095
commit deb02de051
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -182,14 +182,16 @@ jobs:
working-directory: ${{ inputs.working-directory }}
- name: Get minimum versions
id: check-version
id: min-version
run: |
poetry run pip install packaging
echo "min-versions=$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml)" >> $GITHUB_OUTPUT
min_versions="$(poetry run python $GITHUB_WORKSPACE/.github/scripts/get_min_versions.py pyproject.toml)"
echo "min-versions=$min_versions" >> "$GITHUB_OUTPUT"
echo "min-versions=$min_versions"
- name: Run unit tests with minimum dependency versions
env:
MIN_VERSIONS: ${{ steps.check-version.outputs.min-versions }}
MIN_VERSIONS: ${{ steps.min-version.outputs.min-versions }}
run: |
poetry run pip install $MIN_VERSIONS
make tests