fix: run some CI tests against previous python version (#28419)

This commit is contained in:
Maxime Beauchemin
2024-05-10 12:04:29 -07:00
committed by GitHub
parent 02478e5b95
commit e91669821e
2 changed files with 3 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ runs:
echo "PYTHON_VERSION=3.10" >> $GITHUB_ENV
elif [ "${{ inputs.python-version }}" = "next" ]; then
echo "PYTHON_VERSION=3.11" >> $GITHUB_ENV
elif [ "${{ inputs.python-version }}" = "previous" ]; then
echo "PYTHON_VERSION=3.9" >> $GITHUB_ENV
else
echo "PYTHON_VERSION=${{ inputs.python-version }}" >> $GITHUB_ENV
fi