File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ jobs:
3838 # ubuntu-20.04 is the last version that supported python3.6
3939 # see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
4040 os : [ubuntu-22.04]
41- # Use Docker container only for Python 3.6
42- container : ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
41+ # Use Docker container for Python 3.6 and 3.8
42+ container : ${{ ( matrix.python-version == '3.6' || matrix.python-version == '3.8') && format( 'python:{0}', matrix.python-version) || null }}
4343 steps :
4444 - uses : actions/checkout@v6.0.2
4545 - uses : actions/setup-python@v6
46- if : ${{ matrix.python-version != '3.6' }}
46+ if : ${{ matrix.python-version != '3.6' && matrix.python-version != '3.8' }}
4747 with :
4848 python-version : ${{ matrix.python-version }}
4949 allow-prereleases : true
You can’t perform that action at this time.
0 commit comments