Skip to content

Commit

Permalink
infra: release min version debugging (#17150)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Feb 7, 2024
1 parent 9710346 commit deb02de
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit deb02de

Please sign in to comment.